Merge pull request #19522 from apcera/dev_python3

Auto commit by PR queue bot
This commit is contained in:
k8s-merge-robot
2016-01-17 03:21:07 -08:00
7 changed files with 9 additions and 9 deletions

View File

@@ -80,9 +80,9 @@ failed = False
for testcase in parse(sys.stdin).getElementsByTagName("testcase"):
if len(testcase.getElementsByTagName("failure")) != 0:
failed = True
print " FAIL: {test}".format(test = testcase.getAttribute("name"))
print(" FAIL: {test}".format(test = testcase.getAttribute("name")))
if not failed:
print " SUCCESS!"
print(" SUCCESS!")
'
}