Skip to content

Commit

Permalink
Fixed no clusters present message.
Browse files Browse the repository at this point in the history
  • Loading branch information
mnielsen committed Jul 6, 2012
1 parent 0a8e4de commit f40c222
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ec2.py
Expand Up @@ -230,7 +230,7 @@ def show_all():
Print the details of all clusters to stdout. Print the details of all clusters to stdout.
""" """
if len(clusters) == 0: if len(clusters) == 0:
print "No clusters present. Exiting." print "No clusters present."
sys.exit() sys.exit()
print "Showing all clusters." print "Showing all clusters."
for cluster_name in clusters: for cluster_name in clusters:
Expand Down

0 comments on commit f40c222

Please sign in to comment.