Mercurial > hg
view hgext/__init__.py @ 31345:dd49a6c166f7
summary: don't explicitly str() something we're about to %s
str() is wrong on Python 3 here, and %s implicitly calls str() anyway,
so this was just extra dancing for no reason.
author | Augie Fackler <augie@google.com> |
---|---|
date | Sat, 11 Mar 2017 20:58:26 -0500 |
parents | 155e3308289c |
children | 2372284d9457 |
line wrap: on
line source
from __future__ import absolute_import import pkgutil __path__ = pkgutil.extend_path(__path__, __name__)