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:
Erik Johnson 2015-02-28 11:41:31 -06:00
parent 465c729611
commit 86937eedc4

View File

@ -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')