D5608: shallowutil: fsdecode the bytes group name before passing to os

durin42 (Augie Fackler) phabricator at mercurial-scm.org
Wed Jan 16 16:16:46 UTC 2019


durin42 created this revision.
Herald added a subscriber: mercurial-devel.
Herald added a reviewer: hg-reviewers.

REPOSITORY
  rHG Mercurial

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

AFFECTED FILES
  hgext/remotefilelog/shallowutil.py

CHANGE DETAILS

diff --git a/hgext/remotefilelog/shallowutil.py b/hgext/remotefilelog/shallowutil.py
--- a/hgext/remotefilelog/shallowutil.py
+++ b/hgext/remotefilelog/shallowutil.py
@@ -420,7 +420,7 @@
 
 def getgid(groupname):
     try:
-        gid = grp.getgrnam(groupname).gr_gid
+        gid = grp.getgrnam(pycompat.fsdecode(groupname)).gr_gid
         return gid
     except KeyError:
         return None



To: durin42, #hg-reviewers
Cc: mercurial-devel


More information about the Mercurial-devel mailing list