diff options
| author | Jenkins <jenkins@review.openstack.org> | 2013-06-18 11:31:25 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2013-06-18 11:31:25 +0000 |
| commit | 58566a773fc40cbd8786c97e0a79d485fa82feea (patch) | |
| tree | cea24a6d457f21286ade942f824ea51aac9b9fd3 /nova/compute | |
| parent | 0707f9b471f0a4f6964cf132502abfae89800360 (diff) | |
| parent | 9f7eaca80d259201844f097fec24d1e9fe9fb5e3 (diff) | |
Merge "Remove trivial cases of unused variables (1)"
Diffstat (limited to 'nova/compute')
| -rwxr-xr-x | 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 15d1d7d28..1def5b069 100755 --- a/nova/compute/manager.py +++ b/nova/compute/manager.py @@ -495,7 +495,7 @@ class ComputeManager(manager.SchedulerDependentManager): 'assuming it\'s not on shared storage'), instance=instance) shared_storage = False - except Exception as e: + except Exception: LOG.exception(_('Failed to check if instance shared'), instance=instance) finally: |
