Skip to content

Commit

Permalink
Fixing Python 2.6 bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
mnielsen committed Apr 16, 2012
1 parent a199187 commit 903b9d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tiddlylisp.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ def repl(prompt='tiddlylisp> '):
if val is not None: print to_string(val)
except KeyboardInterrupt:
print "\nExiting tiddlylisp\n"
exit()
sys.exit()
except:
handle_error()

Expand Down

0 comments on commit 903b9d7

Please sign in to comment.