Fixing requests.urllib3 warnings

This commit is contained in:
2015-06-12 12:26:14 -05:00
parent 0c60377082
commit 5467655264
6 changed files with 25 additions and 5 deletions

View File

@@ -51,6 +51,7 @@ log = logging.getLogger("main")
def setup():
log.debug("Starting " + application.name + " %s" % (application.version,))
config.setup()
fixes.setup()
log.debug("Using %s %s" % (platform.system(), platform.architecture()[0]))
log.debug("Application path is %s" % (paths.app_path(),))
log.debug("config path is %s" % (paths.config_path(),))
@@ -71,7 +72,6 @@ def setup():
if hasattr(sm.view, "destroy"):
sm.view.destroy()
del sm
fixes.setup()
r = mainController.Controller()
r.view.show()
r.do_work()