Fix visual indentation for PEP8 conformance.
Corrects misindented continuations (PEP8 E127, E128). The run_tests.sh script's PEP8 pass (with current 1.3.3) was reporting under- or over-indented visual continuations in a handful of files, all of which are fixed with this trivial patch. Change-Id: I19388dc0011546abe65b37d31df02debb3676003
This commit is contained in:
parent
0ec3ef5003
commit
8e74cf060a
@ -140,7 +140,8 @@ def notify(context, publisher_id, event_type, priority, payload):
|
|||||||
driver.notify(context, msg)
|
driver.notify(context, msg)
|
||||||
except Exception, e:
|
except Exception, e:
|
||||||
LOG.exception(_("Problem '%(e)s' attempting to "
|
LOG.exception(_("Problem '%(e)s' attempting to "
|
||||||
"send to notification system. Payload=%(payload)s") %
|
"send to notification system. "
|
||||||
|
"Payload=%(payload)s") %
|
||||||
locals())
|
locals())
|
||||||
|
|
||||||
|
|
||||||
|
@ -122,5 +122,6 @@ def marshall_now(now=None):
|
|||||||
def unmarshall_time(tyme):
|
def unmarshall_time(tyme):
|
||||||
"""Unmarshall a datetime dict."""
|
"""Unmarshall a datetime dict."""
|
||||||
return datetime.datetime(day=tyme['day'], month=tyme['month'],
|
return datetime.datetime(day=tyme['day'], month=tyme['month'],
|
||||||
year=tyme['year'], hour=tyme['hour'], minute=tyme['minute'],
|
year=tyme['year'], hour=tyme['hour'],
|
||||||
second=tyme['second'], microsecond=tyme['microsecond'])
|
minute=tyme['minute'], second=tyme['second'],
|
||||||
|
microsecond=tyme['microsecond'])
|
||||||
|
Loading…
Reference in New Issue
Block a user