Mercurial > evolve
changeset 4713:fbe7f35a6926
py3: make metadata values be byte strings as Mercurial expects
author | Martin von Zweigbergk <martinvonz@google.com> |
---|---|
date | Wed, 03 Jul 2019 11:37:29 -0700 |
parents | e2c548cc83b5 |
children | c51fc0ae7a7e |
files | hgext3rd/evolve/metadata.py hgext3rd/topic/__init__.py |
diffstat | 2 files changed, 8 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext3rd/evolve/metadata.py Tue Jul 09 21:49:37 2019 -0700 +++ b/hgext3rd/evolve/metadata.py Wed Jul 03 11:37:29 2019 -0700 @@ -5,7 +5,7 @@ # This software may be used and distributed according to the terms of the # GNU General Public License version 2 or any later version. -__version__ = '9.1.0.dev' -testedwith = '4.5.2 4.6.2 4.7 4.8 4.9 5.0' -minimumhgversion = '4.5' -buglink = 'https://bz.mercurial-scm.org/' +__version__ = b'9.1.0.dev' +testedwith = b'4.5.2 4.6.2 4.7 4.8 4.9 5.0' +minimumhgversion = b'4.5' +buglink = b'https://bz.mercurial-scm.org/'
--- a/hgext3rd/topic/__init__.py Tue Jul 09 21:49:37 2019 -0700 +++ b/hgext3rd/topic/__init__.py Wed Jul 03 11:37:29 2019 -0700 @@ -186,11 +186,11 @@ 'topic.active': 'green', } -__version__ = '0.16.0.dev' +__version__ = b'0.16.0.dev' -testedwith = '4.5.2 4.6.2 4.7 4.8 4.9 5.0' -minimumhgversion = '4.5' -buglink = 'https://bz.mercurial-scm.org/' +testedwith = b'4.5.2 4.6.2 4.7 4.8 4.9 5.0' +minimumhgversion = b'4.5' +buglink = b'https://bz.mercurial-scm.org/' if util.safehasattr(registrar, 'configitem'):