socializer/src/fixes/__init__.py

10 lines
158 B
Python
Raw Normal View History

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