socializer/src/fixes/__init__.py

13 lines
251 B
Python

# -*- coding: utf-8 -*-
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()