summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2012-01-27 23:20:01 +0000
committerGerrit Code Review <review@openstack.org>2012-01-27 23:20:01 +0000
commit1c19d33d9bffddd5aabfd743884be2cf2efa68b4 (patch)
tree1465180f9fd66feac8a7d656928763cdd664623d
parentaefed532691f92c2e4b418afbef54479ac18ae57 (diff)
parented6e3efcf67e5fc194aa9f0cb7776ed77af38837 (diff)
Merge "fix `nova-manage image convert` exception"
-rwxr-xr-xbin/nova-manage3
1 files changed, 1 insertions, 2 deletions
diff --git a/bin/nova-manage b/bin/nova-manage
index efe24a89a..1275d72d9 100755
--- a/bin/nova-manage
+++ b/bin/nova-manage
@@ -1962,8 +1962,7 @@ class ImageCommands(object):
with open(image_path) as ifile:
image = self.image_service.create(elevated, meta, ifile)
new = image['id']
- print _("Image %(old)s converted to " \
- "%(new)s (%(new)08x).") % locals()
+ print _("Image %(old)s converted to %(new)s.") % locals()
except Exception as exc:
print _("Failed to convert %(old)s: %(exc)s") % locals()