2015-02-22 18:45:26 -06:00
|
|
|
# -*- coding: utf-8 -*-
|
2015-03-11 05:54:46 -06:00
|
|
|
""" This module contains some bugfixes for packages used in TWBlue."""
|
2018-11-22 13:35:19 -06:00
|
|
|
from __future__ import absolute_import
|
2015-06-12 12:26:14 -05:00
|
|
|
import sys
|
2018-11-22 13:35:19 -06:00
|
|
|
from . import fix_arrow # A few new locales for Three languages in arrow.
|
2018-11-22 17:48:22 -06:00
|
|
|
from . import fix_libloader # Regenerates comcache properly.
|
2018-11-22 13:35:19 -06:00
|
|
|
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
|
2015-02-22 18:45:26 -06:00
|
|
|
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"):
|
2019-02-21 15:01:43 -06:00
|
|
|
fix_libloader.fix()
|
2015-06-26 17:52:49 -05:00
|
|
|
fix_win32com.fix()
|
2017-02-16 04:30:16 -06:00
|
|
|
fix_requests.fix(True)
|
|
|
|
else:
|
|
|
|
fix_requests.fix(False)
|
2015-06-12 12:26:14 -05:00
|
|
|
fix_urllib3_warnings.fix()
|