Skip to content

Commit

Permalink
Correcting exception handling in glance-manage
Browse files Browse the repository at this point in the history
Fixes bug 884432

Change-Id: I76c0a97e502dd05b4c56c84fa640d1f0e0cd48ae
  • Loading branch information
Brian Waldon committed Nov 1, 2011
1 parent 1ccc0e2 commit 45c7280
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/glance-manage
Expand Up @@ -110,7 +110,7 @@ def dispatch_cmd(options, args):

try:
cmd_func(options, args)
except exception.Error, e:
except exception.GlanceException, e:
sys.exit("ERROR: %s" % e)


Expand Down

0 comments on commit 45c7280

Please sign in to comment.