mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2024-11-23 11:48:07 -06:00
13 lines
467 B
Python
13 lines
467 B
Python
# -*- coding: utf-8 -*-
|
|
""" This module contains some bugfixes for packages used in TWBlue."""
|
|
import sys
|
|
import fix_arrow # A few new locales for Three languages in arrow.
|
|
import fix_urllib3_warnings # Avoiding some SSL warnings related to Twython.
|
|
import fix_win32com
|
|
import fix_requests #fix cacert.pem location for TWBlue binary copies
|
|
def setup():
|
|
fix_arrow.fix()
|
|
if hasattr(sys, "frozen"):
|
|
fix_win32com.fix()
|
|
fix_requests.fix()
|
|
fix_urllib3_warnings.fix() |