1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Ran 2to3 on pysollib/[a-m]*.py

This commit is contained in:
Shlomi Fish 2017-04-28 13:45:46 +03:00
parent ae8a125087
commit d6c0023796

View file

@ -40,17 +40,9 @@ import time
import types
import locale
import webbrowser
from six import print_
try:
from cPickle import Pickler, Unpickler, UnpicklingError
except ImportError:
from pickle import Pickler, Unpickler, UnpicklingError
try:
import thread
except:
thread = None
from pickle import Pickler, Unpickler, UnpicklingError
from pysollib.settings import PACKAGE, TOOLKIT
@ -123,7 +115,7 @@ def print_err(s, level=1):
ss = PACKAGE+': WARNING:'
elif level == 2:
ss = PACKAGE+': DEBUG WARNING:'
print >> sys.stderr, ss, s.encode(locale.getpreferredencoding())
print_(ss, s.encode(locale.getpreferredencoding()), file=sys.stderr)
sys.stderr.flush()