D7413: py3: drop an unnecessary fsencode() before comparing with constant

martinvonz (Martin von Zweigbergk) phabricator at mercurial-scm.org
Thu Nov 14 22:43:52 EST 2019


Closed by commit rHG47d983f0af65: py3: drop an unnecessary fsencode() before comparing with constant (authored by martinvonz).
This revision was automatically updated to reflect the committed changes.

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D7413?vs=18108&id=18136

CHANGES SINCE LAST ACTION
  https://phab.mercurial-scm.org/D7413/new/

REVISION DETAIL
  https://phab.mercurial-scm.org/D7413

AFFECTED FILES
  mercurial/utils/procutil.py

CHANGE DETAILS

diff --git a/mercurial/utils/procutil.py b/mercurial/utils/procutil.py
--- a/mercurial/utils/procutil.py
+++ b/mercurial/utils/procutil.py
@@ -288,10 +288,7 @@
                 _sethgexecutable(pycompat.sysexecutable)
         elif (
             not pycompat.iswindows
-            and os.path.basename(
-                pycompat.fsencode(getattr(mainmod, '__file__', ''))
-            )
-            == b'hg'
+            and os.path.basename(getattr(mainmod, '__file__', '')) == 'hg'
         ):
             _sethgexecutable(pycompat.fsencode(mainmod.__file__))
         else:



To: martinvonz, #hg-reviewers, indygreg
Cc: mercurial-devel


More information about the Mercurial-devel mailing list