Skip to content
Snippets Groups Projects
Commit 22731334 authored by Jan David Mol's avatar Jan David Mol
Browse files

SW-644: Upgraded scripts python2->3

parent 40a79a96
No related branches found
No related tags found
No related merge requests found
......@@ -33,7 +33,7 @@ error-sender = softwaresupport@astron.nl
f.flush()
pec = PipelineEmailConfig(filepatterns=[f.name])
with self.assertRaises(Exception):
print pec["non-existant"]
print(pec["non-existant"])
def test_access_nonexisting_config_file_raises_exception(self):
......@@ -49,7 +49,7 @@ error-sender
f.flush()
pec = PipelineEmailConfig(filepatterns=[f.name])
with self.assertRaises(Exception):
print pec["error-sender"]
print(pec["error-sender"])
def main():
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment