mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 08:58:59 +00:00
Don't use print statement without parenthesis (py3 compat)
This backports a lint fix from #21158 into the tests for 2015.2.
This commit is contained in:
parent
465c729611
commit
86937eedc4
@ -38,7 +38,7 @@ class PublishModuleTest(integration.ModuleCase,
|
||||
)
|
||||
for name in check_true:
|
||||
if name not in ret:
|
||||
print name
|
||||
print(name)
|
||||
self.assertTrue(name in ret)
|
||||
|
||||
self.assertEqual(ret['cheese'], 'spam')
|
||||
|
Loading…
Reference in New Issue
Block a user