From patchwork Mon Nov 4 16:27:49 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: D7209: fsmonitor: make _hashignore compatible with Python 3 From: phabricator X-Patchwork-Id: 42719 Message-Id: <98b34909f03bc6a980cfe5891801a492@localhost.localdomain> To: Phabricator Cc: mercurial-devel@mercurial-scm.org Date: Mon, 4 Nov 2019 16:27:49 +0000 Closed by commit rHGbdebc7b54dca: fsmonitor: make _hashignore compatible with Python 3 (authored by indygreg). This revision was automatically updated to reflect the committed changes. This revision was not accepted when it landed; it landed in state "Needs Review". REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE https://phab.mercurial-scm.org/D7209?vs=17507&id=17525 CHANGES SINCE LAST ACTION https://phab.mercurial-scm.org/D7209/new/ REVISION DETAIL https://phab.mercurial-scm.org/D7209 AFFECTED FILES hgext/fsmonitor/__init__.py CHANGE DETAILS To: indygreg, #hg-reviewers Cc: mercurial-devel diff --git a/hgext/fsmonitor/__init__.py b/hgext/fsmonitor/__init__.py --- a/hgext/fsmonitor/__init__.py +++ b/hgext/fsmonitor/__init__.py @@ -236,8 +236,8 @@ """ sha1 = hashlib.sha1() - sha1.update(repr(ignore)) - return sha1.hexdigest() + sha1.update(pycompat.byterepr(ignore)) + return pycompat.sysbytes(sha1.hexdigest()) _watchmanencoding = pywatchman.encoding.get_local_encoding()