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 <luke@diamand.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Luke Diamand committed
Jun 19, 2018 at 09:04 UTC
4d88519f6a2c7ea170f239a638137ce26d39cb11
1 file changed
+1
-1
git-p4.py
+1
-1
@@ -3089,7 +3089,7 @@ class P4Sync(Command, P4UserMap):
3089
3090
l = p4CmdList(["labels"] + ["%s..." % p for p in self.depotPaths])
3091
if len(l) > 0 and not self.silent:
3092
- print "Finding files belonging to labels in %s" % `self.depotPaths`
3092
+ print("Finding files belonging to labels in %s" % self.depotPaths)
3093
3094
for output in l:
3095
label = output["label"]