summaryrefslogtreecommitdiffstats
path: root/systemCheck.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-06-28 14:49:34 +0200
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-06-28 20:21:03 +0200
commit6abc3221c9b5ba1a1b54633c8283c7c5c978558a (patch)
treeb98bb58c4e10bc6638cebfc2fb1327ca71adb797 /systemCheck.py
parentUpdate CherryPy wsgiserver to version 3.2.1 (diff)
downloadpyload-6abc3221c9b5ba1a1b54633c8283c7c5c978558a.tar.xz
[GUI] Removed
Diffstat (limited to 'systemCheck.py')
-rw-r--r--systemCheck.py22
1 files changed, 0 insertions, 22 deletions
diff --git a/systemCheck.py b/systemCheck.py
index a1f8ba67f..05bcc9f79 100644
--- a/systemCheck.py
+++ b/systemCheck.py
@@ -37,12 +37,6 @@ def main():
except:
print("image libary:", "missing")
- try:
- import PyQt4.QtCore
- print("pyqt:", PyQt4.QtCore.PYQT_VERSION_STR)
- except:
- print("pyqt:", "missing")
-
print("\n\n##### System Status #####")
print("\n## pyLoadCore ##")
@@ -93,22 +87,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 = []