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."""
|
2015-06-12 12:26:14 -05:00
|
|
|
import sys
|
2015-02-22 18:45:26 -06:00
|
|
|
import fix_arrow # A few new locales for Three languages in arrow.
|
2015-06-12 12:26:14 -05:00
|
|
|
import fix_urllib3_warnings # Avoiding some SSL warnings related to Twython.
|
2015-06-26 17:52:49 -05:00
|
|
|
import fix_win32com
|
2016-05-07 17:08:40 -05:00
|
|
|
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"):
|
|
|
|
fix_win32com.fix()
|
2016-05-07 17:08:40 -05:00
|
|
|
fix_requests.fix()
|
2015-06-12 12:26:14 -05:00
|
|
|
fix_urllib3_warnings.fix()
|