Commit ca716cfb authored by Berker Peksag's avatar Berker Peksag

Fix self.fail() call in test_data_header

parents deab18df ad1fd346
......@@ -184,7 +184,7 @@ class urlretrieveNetworkTests(unittest.TestCase):
try:
time.strptime(datevalue, dateformat)
except ValueError:
self.fail('Date value not in %r format', dateformat)
self.fail('Date value not in %r format' % dateformat)
def test_reporthook(self):
records = []
......
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