summaryrefslogtreecommitdiffstats
path: root/systemCheck.py
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2012-01-12 20:34:33 +0100
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2012-01-12 20:34:33 +0100
commit8b94229290b5cb9beedd318af8499c44624b3ad0 (patch)
treec21229e4a9e617cc7423daf191411086f6c41d45 /systemCheck.py
parentpyflakes fix (diff)
downloadpyload-8b94229290b5cb9beedd318af8499c44624b3ad0.tar.xz
added setup.py, dropped GUI
Diffstat (limited to 'systemCheck.py')
-rw-r--r--systemCheck.py21
1 files changed, 2 insertions, 19 deletions
diff --git a/systemCheck.py b/systemCheck.py
index 60fe0313b..b16704ac9 100644
--- a/systemCheck.py
+++ b/systemCheck.py
@@ -94,24 +94,6 @@ def main():
for line in core_info:
print(line)
-
- print("\n## pyLoadGui ##")
-
- gui_err = []
-
- try:
- import PyQt4
- except:
- gui_err.append("GUI won't work without pyqt4 !!")
-
- if gui_err:
- print("The system check has detected some errors:\n")
- for err in gui_err:
- print(err)
- else:
- print("No Problems detected, pyLoadGui should work fine.")
-
-
print("\n## Webinterface ##")
web_err = []
@@ -139,4 +121,5 @@ def main():
if __name__ == "__main__":
main()
- raw_input("Press Enter to Exit.")
+ # comp. with py2 and 3
+ input("Press Enter to Exit.")