Added Python 3 support.

This commit is contained in:
John Shanahan 2013-08-25 14:29:44 -04:00
parent e6d5d9b8dc
commit 5e4186f426
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):