git-p4: python3: fix octal constants

See PEP3127. Works fine with python2 as well. 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 db2d997efa43596fe5860d1b1c0c410e99d96f67
1 file changed +1 -1
git-p4.py
+1 -1
@@ -1841,7 +1841,7 @@ class P4Submit(Command, P4UserMap):
1841 filesToDelete.remove(path)
1842
1843 dst_mode = int(diff['dst_mode'], 8)
1844 - if dst_mode == 0120000:
1844 + if dst_mode == 0o120000:
1845 symlinks.add(path)
1846
1847 elif modifier == "D":