diff options
author | 2013-04-07 00:51:48 +0200 | |
---|---|---|
committer | 2013-04-07 00:51:48 +0200 | |
commit | e0f7bdc2191bfcf53097cca6f7857ec4e3868325 (patch) | |
tree | c43d8bf722bf9f17a94301684732bd7af3564223 | |
parent | separated styles, improved footer (diff) | |
download | pyload-e0f7bdc2191bfcf53097cca6f7857ec4e3868325.tar.xz |
Fixed #65
-rw-r--r-- | systemCheck.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/systemCheck.py b/systemCheck.py index 4b3c90753..050416379 100644 --- a/systemCheck.py +++ b/systemCheck.py @@ -121,5 +121,8 @@ def main(): if __name__ == "__main__": main() - # comp. with py2 and 3 - input("Press Enter to Exit.") + # comp. with py2 and 3 + try: + input("Press Enter to Exit.") + except SyntaxError: # will raise in py2 + pass |