diff options
author | Dirk Mueller <dirk@dmllr.de> | 2013-06-08 13:18:51 +0200 |
---|---|---|
committer | Dirk Mueller <dirk@dmllr.de> | 2013-06-12 22:07:23 +0200 |
commit | 1bf87dda57b076e042301eeafa966283265d08cf (patch) | |
tree | 103b0d02f296210ca95f1ed117347ab5d2c948b2 /nova/notifications.py | |
parent | 957bd5c780c83243c750c22925e8f61f683f2b03 (diff) | |
download | nova-1bf87dda57b076e042301eeafa966283265d08cf.tar.gz nova-1bf87dda57b076e042301eeafa966283265d08cf.tar.xz nova-1bf87dda57b076e042301eeafa966283265d08cf.zip |
Fix and enable H403 tests
Multi-line doc-strings should end on a new, separate line.
Change-Id: I4cf0cfe92b634ef77971863a4df41ef43531bc20
Diffstat (limited to 'nova/notifications.py')
-rw-r--r-- | nova/notifications.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nova/notifications.py b/nova/notifications.py index d000c4083..13e2a8fca 100644 --- a/nova/notifications.py +++ b/nova/notifications.py @@ -157,7 +157,8 @@ def _send_instance_update_notification(context, instance, old_vm_state=None, old_task_state=None, new_vm_state=None, new_task_state=None, service="compute", host=None): """Send 'compute.instance.update' notification to inform observers - about instance state changes""" + about instance state changes. + """ payload = info_from_instance(context, instance, None, None) |