mirror of
https://github.com/kakwa/ldapcherry
synced 2025-07-04 20:37:48 +02:00
fix html validator test for python 3
This commit is contained in:
parent
05aace0e9d
commit
263e6be547
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@ def htmlvalidator(page):
|
|||
f.close()
|
||||
stdout.close()
|
||||
print(out)
|
||||
if not re.search(r'Error:.*', out) is None:
|
||||
if not re.search(r'Error:.*', str(out)) is None:
|
||||
raise HtmlValidationFailed(out)
|
||||
|
||||
class BadModule():
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue