From a7025cdeb504463a1db08a37c821e045d90d76cd Mon Sep 17 00:00:00 2001 From: Steven Dake Date: Mon, 19 Mar 2012 17:10:58 -0700 Subject: [PATCH] Remove erroneous setup operation Signed-off-by: Steven Dake --- README.rst | 1 - bin/heat | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/README.rst b/README.rst index de11368c80..ffec406e67 100644 --- a/README.rst +++ b/README.rst @@ -19,7 +19,6 @@ If you'd like to run trunk, you can clone the git repo: Install Heat by running:: - python setup.py build sudo python setup.py install try: diff --git a/bin/heat b/bin/heat index cfe8dfd9e4..8450dbe520 100755 --- a/bin/heat +++ b/bin/heat @@ -256,7 +256,7 @@ def jeos_create(options, arguments): images = c.get_images(**parameters) for image in images: - if image['name'] == name: + if image['name'] == distro: print ' *** image already in glance: %s > %s' % (image['name'], image['id']) sys.exit(1)