From cc47515f41b4526ccc2da9304b65397399bb1ecf Mon Sep 17 00:00:00 2001 From: John Shanahan Date: Thu, 15 Aug 2013 17:49:30 -0400 Subject: [PATCH] Added '-help' and 'cheat' to the list of cheat usage arguments. --- cheat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cheat b/cheat index 856a419..0469ddf 100755 --- a/cheat +++ b/cheat @@ -16,7 +16,7 @@ cheatsheets = os.listdir(cheat_dir) cheatsheets.sort() # print help if requested -if keyphrase in ['', 'help', '--help', '-h']: +if keyphrase in ['', '-h', 'help', '-help', '--help', 'cheat']: print "Usage: cheat [keyphrase]\n" print "Available keyphrases:" print "\n".join(cheatsheets)