[compat] Beautify assertion
This commit is contained in:
parent
4aae94f9d0
commit
b061ea6e9f
1 changed files with 1 additions and 1 deletions
|
@ -270,7 +270,7 @@ if sys.version_info < (3, 0):
|
|||
print(s.encode(preferredencoding(), 'xmlcharrefreplace'))
|
||||
else:
|
||||
def compat_print(s):
|
||||
assert type(s) == type(u'')
|
||||
assert isinstance(s, compat_str)
|
||||
print(s)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue