mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
use normal print to avoid b"...".
This commit is contained in:
parent
cb25f39136
commit
da256a30b0
1 changed files with 2 additions and 2 deletions
|
@ -107,9 +107,9 @@ def print_err(s, level=1):
|
|||
elif level == 2:
|
||||
ss = PACKAGE+': DEBUG WARNING:'
|
||||
try:
|
||||
print_(ss, s.encode(locale.getpreferredencoding()), file=sys.stderr)
|
||||
except Exception:
|
||||
print_(ss, s, file=sys.stderr)
|
||||
except Exception:
|
||||
print_(ss, s.encode(locale.getpreferredencoding()), file=sys.stderr)
|
||||
sys.stderr.flush()
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue