twblue/src/fixes/__init__.py

19 lines
692 B
Python
Raw Normal View History

# -*- coding: utf-8 -*-
""" This module contains some bugfixes for packages used in TWBlue."""
from __future__ import absolute_import
2019-06-06 11:52:23 -05:00
from __future__ import unicode_literals
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()
# else:
# fix_requests.fix(False)
2015-06-12 12:26:14 -05:00
fix_urllib3_warnings.fix()