Revert commit 7865219164 This causes too much grief as we are getting a lot of default values from the database. These *SHOULD* be defined, but will have to be done later.

This commit is contained in:
Ebag333
2017-02-09 09:36:16 -08:00
parent dd9924a7a7
commit 64070a0798
22 changed files with 10 additions and 84 deletions

View File

@@ -59,7 +59,6 @@ if not hasattr(sys, 'frozen'):
try:
import wxversion
except ImportError:
wxversion = None
print("Cannot find wxPython\nYou can download wxPython (2.8+) from http://www.wxpython.org/")
sys.exit(1)
@@ -87,8 +86,6 @@ if not hasattr(sys, 'frozen'):
"You can download sqlalchemy (0.5.8+) from http://www.sqlalchemy.org/".format(sqlalchemy.__version__))
sys.exit(1)
else:
if not sqlalchemy:
sqlalchemy = None
print("Unknown sqlalchemy version string format, skipping check")
except ImportError:
@@ -100,7 +97,6 @@ if not hasattr(sys, 'frozen'):
# noinspection PyPackageRequirements
import dateutil.parser # noqa - Copied import statement from service/update.py
except ImportError:
dateutil = None
print("Cannot find python-dateutil.\nYou can download python-dateutil from https://pypi.python.org/pypi/python-dateutil")
sys.exit(1)