One line fix that's been in my code for awhile but not committed.

This commit is contained in:
Jeremy Fincher 2003-07-29 00:58:57 +00:00
parent 7a281d5e4b
commit 51ab17ad98

View File

@ -181,6 +181,7 @@ if __name__ == '__main__':
import sys
if '-p' in sys.argv:
import profile, time
sys.argv.remove('-p')
profile.run('main()', '%i.prof' % time.time())
if '-O' in sys.argv:
import psyco