Mercurial > evolve
diff hgext3rd/topic/__init__.py @ 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 | 5f90eb8fd63c |
children | 12c8b24757f4 |
line wrap: on
line diff
--- 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'):