socializer/src/fixes/__init__.py

14 lines
291 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
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_libloader.fix()
fix_win32com.fix()