diff hgext/fix.py @ 39836:f1d6021453c2

py3: remove a couple of superfluous calls to pycompat.rapply() These places can only be strings.
author Matt Harbison <matt_harbison@yahoo.com>
date Tue, 25 Sep 2018 23:25:36 -0400
parents c31ce080eb75
children c303d65d2e34
line wrap: on
line diff
--- a/hgext/fix.py	Tue Sep 25 22:11:17 2018 -0400
+++ b/hgext/fix.py	Tue Sep 25 23:25:36 2018 -0400
@@ -452,7 +452,7 @@
                 continue
             ui.debug('subprocess: %s\n' % (command,))
             proc = subprocess.Popen(
-                pycompat.rapply(procutil.tonativestr, command),
+                procutil.tonativestr(command),
                 shell=True,
                 cwd=procutil.tonativestr(b'/'),
                 stdin=subprocess.PIPE,