socializer/src/fixes/__init__.py

11 lines
186 B
Python
Raw Normal View History

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