twblue/src/fixes/__init__.py

18 lines
654 B
Python
Raw Normal View History

# -*- coding: utf-8 -*-
""" This module contains some bugfixes for packages used in TWBlue."""
from __future__ import absolute_import
2015-06-12 12:26:14 -05:00
import sys
from . import fix_arrow # A few new locales for Three languages in arrow.
from . import fix_libloader # Regenerates comcache properly.
from . import fix_urllib3_warnings # Avoiding some SSL warnings related to Twython.
from . import fix_win32com
from . import fix_requests #fix cacert.pem location for TWBlue binary copies
def setup():
2015-06-12 12:26:14 -05:00
fix_arrow.fix()
2015-06-26 17:52:49 -05:00
if hasattr(sys, "frozen"):
fix_libloader.fix()
2015-06-26 17:52:49 -05:00
fix_win32com.fix()
fix_requests.fix(True)
else:
fix_requests.fix(False)
2015-06-12 12:26:14 -05:00
fix_urllib3_warnings.fix()