summaryrefslogtreecommitdiffstats
path: root/bin/nova-compute
diff options
context:
space:
mode:
authorVishvananda Ishaya <vishvananda@gmail.com>2010-07-26 17:14:28 -0700
committerVishvananda Ishaya <vishvananda@gmail.com>2010-07-26 17:14:28 -0700
commit754db8ef1ceb84fa9a1f44bfc6c5c6bbd99cd7e1 (patch)
tree160984a03f0d27a8ff4dff9b5e12a8243fd9fe91 /bin/nova-compute
parentcacca7df569e396d76112693aab62c95d51ff035 (diff)
downloadnova-754db8ef1ceb84fa9a1f44bfc6c5c6bbd99cd7e1.tar.gz
nova-754db8ef1ceb84fa9a1f44bfc6c5c6bbd99cd7e1.tar.xz
nova-754db8ef1ceb84fa9a1f44bfc6c5c6bbd99cd7e1.zip
renamed xxxservice to service
Diffstat (limited to 'bin/nova-compute')
-rwxr-xr-xbin/nova-compute4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/nova-compute b/bin/nova-compute
index 7ef5d074a..e0c12354f 100755
--- a/bin/nova-compute
+++ b/bin/nova-compute
@@ -22,11 +22,11 @@
"""
from nova import twistd
-from nova.compute import computeservice
+from nova.compute import service
if __name__ == '__main__':
twistd.serve(__file__)
if __name__ == '__builtin__':
- application = computeservice.ComputeService.create()
+ application = service.ComputeService.create()