From: Luke Diamand Date: Tue, 19 Jun 2018 08:04:08 +0000 (+0100) Subject: git-p4: python3: remove backticks X-Git-Tag: v2.19.0-rc0~163^2~3 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4d88519f6a2c7ea170f239a638137ce26d39cb11;p=git git-p4: python3: remove backticks Backticks around a variable are a deprecated alias for repr(). This has been removed in python3, so just use the string representation instead, which is equivalent. Signed-off-by: Luke Diamand Signed-off-by: Junio C Hamano --- diff --git a/git-p4.py b/git-p4.py index 6fcad35104..67865d14aa 100755 --- a/git-p4.py +++ b/git-p4.py @@ -3089,7 +3089,7 @@ class P4Sync(Command, P4UserMap): l = p4CmdList(["labels"] + ["%s..." % p for p in self.depotPaths]) 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" % self.depotPaths) for output in l: label = output["label"]