socializer/src/fixes/__init__.py

14 lines
289 B
Python
Raw Normal View History

# -*- coding: utf-8 -*-
2019-01-02 04:42:53 +03:00
from __future__ import unicode_literals
2016-06-02 17:42:44 -05:00
import sys
from . import fix_requests
#if hasattr(sys, "frozen"):
from . import fix_win32com
from . import fix_libloader
def setup():
fix_requests.fix()
# if hasattr(sys, "frozen"):
fix_libloader.fix()
fix_win32com.fix()