Mercurial > public > mercurial-scm > hg-stable
diff tests/test-doctest.py @ 34359:8cbcee0b923d
py3: remove use of str() in hgwebdir
'%d' can't be used here since port may be either integer or byte string.
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Wed, 27 Sep 2017 19:04:32 +0900 |
parents | ebe3d0095c69 |
children | ee10eb665036 |
line wrap: on
line diff
--- a/tests/test-doctest.py Wed Sep 27 18:07:48 2017 -0700 +++ b/tests/test-doctest.py Wed Sep 27 19:04:32 2017 +0900 @@ -53,7 +53,7 @@ testmod('mercurial.encoding') testmod('mercurial.formatter') testmod('mercurial.hg') -testmod('mercurial.hgweb.hgwebdir_mod', py3=False) # py3: repr(bytes) ? +testmod('mercurial.hgweb.hgwebdir_mod') testmod('mercurial.match') testmod('mercurial.mdiff') testmod('mercurial.minirst')