diff options
| author | Kei Masumoto <masumotok@nttdata.co.jp> | 2011-04-07 13:08:14 +0900 |
|---|---|---|
| committer | Kei Masumoto <masumotok@nttdata.co.jp> | 2011-04-07 13:08:14 +0900 |
| commit | d7e8d91d6bc4954f2d256f57e34444b5bd170ab0 (patch) | |
| tree | 5334403ef2a966ff8aac35d7ad0adfb9345ccd60 | |
| parent | 4d1f60df049e11623df7d6174eda19e5e27d004e (diff) | |
| download | nova-d7e8d91d6bc4954f2d256f57e34444b5bd170ab0.tar.gz nova-d7e8d91d6bc4954f2d256f57e34444b5bd170ab0.tar.xz nova-d7e8d91d6bc4954f2d256f57e34444b5bd170ab0.zip | |
fixed based on reviewer's comment - 'locals() should be off from _()
| -rw-r--r-- | nova/compute/manager.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/compute/manager.py b/nova/compute/manager.py index 37a904b1e..847c3655a 100644 --- a/nova/compute/manager.py +++ b/nova/compute/manager.py @@ -1096,7 +1096,7 @@ class ComputeManager(manager.SchedulerDependentManager): # this case should be ignored. LOG.info(_("the instance '%(name)s' is not found in hypervisor" ", while db record is found. But not synchronize " - "since it is migrating." % locals())) + "since it is migrating.") % locals()) continue if vm_state != db_state: |
