From 8b94229290b5cb9beedd318af8499c44624b3ad0 Mon Sep 17 00:00:00 2001 From: RaNaN Date: Thu, 12 Jan 2012 20:34:33 +0100 Subject: added setup.py, dropped GUI --- systemCheck.py | 21 ++------------------- 1 file changed, 2 insertions(+), 19 deletions(-) (limited to 'systemCheck.py') 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.") -- cgit v1.2.3