socializer/src/fixes/__init__.py

13 lines
251 B
Python
Raw Normal View History

# -*- coding: utf-8 -*-
2016-06-02 17:42:44 -05:00
import sys
from . import fix_requests
2017-03-13 02:16:34 -06:00
if hasattr(sys, "frozen"):
from . import fix_win32com
from . import fix_libloader
def setup():
fix_requests.fix()
2016-06-02 17:42:44 -05:00
if hasattr(sys, "frozen"):
fix_win32com.fix()
fix_libloader.fix()