From 3399b8905d5785e662d92cb5845abdb0f010e6a9 Mon Sep 17 00:00:00 2001 From: Chris Lane Date: Mon, 26 Aug 2013 19:45:12 -0400 Subject: [PATCH] Removed the asterisks denoting the boundaries of the cheatsheets. --- cheat | 2 -- 1 file changed, 2 deletions(-) diff --git a/cheat b/cheat index 4b46332..0772de8 100755 --- a/cheat +++ b/cheat @@ -117,7 +117,6 @@ def main(): # print the cheatsheet if it exists if keyphrase in cheatsheets: - print ''.join('*' for x in range(80)) + "\n" filename = os.path.join(cheatsheets[keyphrase], keyphrase) if USE_PYGMENTS: pretty_print(filename) @@ -125,7 +124,6 @@ def main(): with open(filename) as istream: for l in istream: sys.stdout.write(l) - print "\n" + ''.join('*' for x in range(80)) # if it does not, say so else: