Commit cd9116cb authored by Matthieu Cattin's avatar Matthieu Cattin

test01: Bug fix in exception.

Missing %s in the string arg of the exception.
parent 32e36ec5
......@@ -64,7 +64,7 @@ def main (default_directory='.'):
fmc.print_unique_id()
fmc.print_temp()
except FmcAdc100mOperationError as e:
raise PtsError("Mezzanine onewire test failed: " % e)
raise PtsError("Mezzanine onewire test failed: %s" % e)
print ""
print "==> End of test%02d" % TEST_NB
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment