Merge branch 'master' of https://github.com/shanahanjrs/cheat into shanahanjrs-master

* 'master' of https://github.com/shanahanjrs/cheat:
  Added Python 3 support.
This commit is contained in:
Chris Lane 2013-08-26 19:37:40 -04:00
commit e757bcc46d
1 changed files with 5 additions and 5 deletions

10
cheat
View File

@ -62,11 +62,11 @@ def main():
# print help if requested
if keyphrase.lower() in ['', 'cheat', 'help', '-h', '-help', '--help']:
print "Usage: cheat [keyphrase]\n"
print "Available keyphrases:"
print ("Usage: cheat [keyphrase]\n")
print ("Available keyphrases:")
max_command = max([len(x) for x in cheatsheets.keys()]) + 3
print '\n'.join(sorted(['%s [%s]' % (key.ljust(max_command), value)
for key, value in cheatsheets.items()]))
print ('\n'.join(sorted(['%s [%s]' % (key.ljust(max_command), value)
for key, value in cheatsheets.items()])))
exit()
# print the cheatsheet if it exists
@ -81,7 +81,7 @@ def main():
# if it does not, say so
else:
print 'No cheatsheet found for %s.' % keyphrase
print ('No cheatsheet found for %s.' % keyphrase)
def pretty_print(filename):