Replace nasty print statements in six_brokenpkg.

This commit is contained in:
David Wilson 2017-11-19 19:25:53 +05:30
parent d45ba15986
commit 43fae4414a
1 changed files with 2 additions and 2 deletions

View File

@ -29,9 +29,9 @@ import os.path
try: try:
import six as _system_six import six as _system_six
print('unsocks', _system_six) print('six_brokenpkg: using system six:', _system_six)
except ImportError, e: except ImportError, e:
print('cocks', e) print('six_brokenpkg: no system six available', e)
_system_six = None _system_six = None
if _system_six: if _system_six: