Skip to content

Commit

Permalink
Fixed "USAGE" help text.
Browse files Browse the repository at this point in the history
  • Loading branch information
williamsjj committed Jul 5, 2011
1 parent e38a925 commit 55611f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/chapter-9/node_lister.py
Expand Up @@ -11,7 +11,7 @@

#/(uvm.1) Assign arguments
if len(sys.argv) < 4:
print "USAGE: user_vhost_manager.py server_name auth_user auth_pass"
print "USAGE: node_lister.py server_name auth_user auth_pass"
sys.exit(1)

server, port = sys.argv[1].split(":")
Expand Down
2 changes: 1 addition & 1 deletion python/chapter-9/queue_stats.py
Expand Up @@ -10,7 +10,7 @@

#/(uvm.1) Assign arguments
if len(sys.argv) < 6:
print "USAGE: user_vhost_manager.py server_name auth_user auth_pass VHOST QUEUE_NAME"
print "USAGE: queue_stats.py server_name auth_user auth_pass VHOST QUEUE_NAME"
sys.exit(1)

server, port = sys.argv[1].split(":")
Expand Down

0 comments on commit 55611f4

Please sign in to comment.