Improve help message

This commit is contained in:
David Bartley 2008-04-01 22:11:17 -04:00
parent 85d38fc879
commit 755d835eec
1 changed files with 5 additions and 1 deletions

View File

@ -36,7 +36,11 @@ def help():
print 'Unknown command %s.' % args[0] print 'Unknown command %s.' % args[0]
else: else:
print '' print ''
print 'Available commands:' print 'To run the ceo GUI, type \'ceo\''
print ''
print 'To run a ceo console command, type \'ceo command\''
print ''
print 'Available console commands:'
for c in commands: for c in commands:
print ' %s' % c print ' %s' % c
print '' print ''