Mercurial > hg-stable
changeset 43383:0f890ce15888 stable
py3: use raw string to query EmailMessage in gnuarch converter
author | Denis Laxalde <denis@laxalde.org> |
---|---|
date | Mon, 04 Nov 2019 09:56:10 +0100 |
parents | cf3bf3b03445 |
children | 1edf620a37a3 |
files | hgext/convert/gnuarch.py |
diffstat | 1 files changed, 5 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/convert/gnuarch.py Mon Nov 04 09:52:13 2019 +0100 +++ b/hgext/convert/gnuarch.py Mon Nov 04 09:56:10 2019 +0100 @@ -302,22 +302,22 @@ # Commit date self.changes[rev].date = dateutil.datestr( - dateutil.strdate(catlog[b'Standard-date'], b'%Y-%m-%d %H:%M:%S') + dateutil.strdate(catlog[r'Standard-date'], b'%Y-%m-%d %H:%M:%S') ) # Commit author - self.changes[rev].author = self.recode(catlog[b'Creator']) + self.changes[rev].author = self.recode(catlog[r'Creator']) # Commit description self.changes[rev].summary = b'\n\n'.join( - (catlog[b'Summary'], catlog.get_payload()) + (catlog[r'Summary'], catlog.get_payload()) ) self.changes[rev].summary = self.recode(self.changes[rev].summary) # Commit revision origin when dealing with a branch or tag - if b'Continuation-of' in catlog: + if r'Continuation-of' in catlog: self.changes[rev].continuationof = self.recode( - catlog[b'Continuation-of'] + catlog[r'Continuation-of'] ) except Exception: raise error.Abort(_(b'could not parse cat-log of %s') % rev)