summaryrefslogtreecommitdiffstats
path: root/systemCheck.py
diff options
context:
space:
mode:
authorGravatar Stefano <l.stickell@yahoo.it> 2013-04-07 00:51:48 +0200
committerGravatar Stefano <l.stickell@yahoo.it> 2013-04-07 00:51:48 +0200
commite0f7bdc2191bfcf53097cca6f7857ec4e3868325 (patch)
treec43d8bf722bf9f17a94301684732bd7af3564223 /systemCheck.py
parentseparated styles, improved footer (diff)
downloadpyload-e0f7bdc2191bfcf53097cca6f7857ec4e3868325.tar.xz
Fixed #65
Diffstat (limited to 'systemCheck.py')
-rw-r--r--systemCheck.py7
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