Apply Python 3 futurize transform lib2to3.fixes.fix_repr.

This commit is contained in:
Tim Abbott 2015-11-01 08:10:35 -08:00
parent e2a5b50b31
commit 2ec8d0a507

View file

@ -2321,7 +2321,7 @@ class P4Sync(Command, P4UserMap):
l = p4CmdList(["labels"] + ["%s..." % p for p in self.depotPaths]) l = p4CmdList(["labels"] + ["%s..." % p for p in self.depotPaths])
if len(l) > 0 and not self.silent: if len(l) > 0 and not self.silent:
print "Finding files belonging to labels in %s" % `self.depotPaths` print "Finding files belonging to labels in %s" % repr(self.depotPaths)
for output in l: for output in l:
label = output["label"] label = output["label"]