Skip to content
Snippets Groups Projects
Commit 3ed8d9bb authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

Fix py3 compatibility issue

parent 14e685d2
No related branches found
No related tags found
1 merge request!35Config file
Pipeline #
......@@ -54,9 +54,6 @@ def check_parameters(args_file, args_cmdline):
if (isinstance(attr_file, (bool, str, int, list))) or (attr_file is None):
assert attr_cmdline == attr_file, '(%s) %r != %r' % \
(attr, attr_cmdline, attr_file)
else:
print '(%s) %r == %r?' % (attr, attr_cmdline, attr_file),
print attr_cmdline == attr_file, type(attr_cmdline)
def test_basic():
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment