diff options
| author | Trey Morris <trey.morris@rackspace.com> | 2010-12-28 05:14:21 +0000 |
|---|---|---|
| committer | Trey Morris <trey.morris@rackspace.com> | 2010-12-28 05:14:21 +0000 |
| commit | 32bfe6acdf8e462f90c72c9230b77c8c6fdca93b (patch) | |
| tree | 0c9cf8946fb76171b4bb202566106eff9b901026 /nova/compute | |
| parent | 7cc68042a911dc38f1c2c24b3361757c16142b74 (diff) | |
| download | nova-32bfe6acdf8e462f90c72c9230b77c8c6fdca93b.tar.gz nova-32bfe6acdf8e462f90c72c9230b77c8c6fdca93b.tar.xz nova-32bfe6acdf8e462f90c72c9230b77c8c6fdca93b.zip | |
fixed a line length
Diffstat (limited to 'nova/compute')
| -rw-r--r-- | nova/compute/manager.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nova/compute/manager.py b/nova/compute/manager.py index d5e0c38b0..70b175e7c 100644 --- a/nova/compute/manager.py +++ b/nova/compute/manager.py @@ -302,7 +302,8 @@ class ComputeManager(manager.Manager): context = context.elevated() instance_ref = self.db.instance_get(context, instance_id) - logging.debug(_('instance %s: suspending'), instance_ref['internal_id']) + logging.debug(_('instance %s: suspending'), + instance_ref['internal_id']) self.db.instance_set_state(context, instance_id, power_state.NOSTATE, 'suspending') |
