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/cmd | |
| parent | 0707f9b471f0a4f6964cf132502abfae89800360 (diff) | |
| parent | 9f7eaca80d259201844f097fec24d1e9fe9fb5e3 (diff) | |
Merge "Remove trivial cases of unused variables (1)"
Diffstat (limited to 'nova/cmd')
| -rw-r--r-- | nova/cmd/manage.py | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/nova/cmd/manage.py b/nova/cmd/manage.py index 46e6d371f..df54e8677 100644 --- a/nova/cmd/manage.py +++ b/nova/cmd/manage.py @@ -72,7 +72,6 @@ from nova.openstack.common.db import exception as db_exc from nova.openstack.common import importutils from nova.openstack.common import log as logging from nova.openstack.common import rpc -from nova.openstack.common import timeutils from nova import quota from nova import servicegroup from nova import version @@ -655,7 +654,6 @@ class ServiceCommands(object): """ servicegroup_api = servicegroup.API() ctxt = context.get_admin_context() - now = timeutils.utcnow() services = db.service_get_all(ctxt) services = availability_zones.set_availability_zones(ctxt, services) if host: @@ -1003,13 +1001,12 @@ class AgentBuildCommands(object): hypervisor='xen'): """Creates a new agent build.""" ctxt = context.get_admin_context() - agent_build = db.agent_build_create(ctxt, - {'hypervisor': hypervisor, - 'os': os, - 'architecture': architecture, - 'version': version, - 'url': url, - 'md5hash': md5hash}) + db.agent_build_create(ctxt, {'hypervisor': hypervisor, + 'os': os, + 'architecture': architecture, + 'version': version, + 'url': url, + 'md5hash': md5hash}) def delete(self, os, architecture, hypervisor='xen'): """Deletes an existing agent build.""" |
