diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2014-04-30 17:38:29 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-04-30 17:38:29 -0400 |
commit | 573c2c86d4d4f506a87a1fc16060f32c1386ad38 (patch) | |
tree | d8e3e14b773461dc4e555ff76d9c6180f958cee0 /setuptools/command/register.py | |
parent | 0f0c892487277e25ce79a39477b193822f1edf79 (diff) | |
download | external_python_setuptools-573c2c86d4d4f506a87a1fc16060f32c1386ad38.tar.gz external_python_setuptools-573c2c86d4d4f506a87a1fc16060f32c1386ad38.tar.bz2 external_python_setuptools-573c2c86d4d4f506a87a1fc16060f32c1386ad38.zip |
Correct indentation and clarify meaning by using namespacing
--HG--
extra : amend_source : 20ab7547c8478eb084767fe701e627bdd462ba16
Diffstat (limited to 'setuptools/command/register.py')
-rwxr-xr-x | setuptools/command/register.py | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/setuptools/command/register.py b/setuptools/command/register.py index 3b2e0859..6694d1c0 100755 --- a/setuptools/command/register.py +++ b/setuptools/command/register.py @@ -1,10 +1,9 @@ -from distutils.command.register import register as _register +import distutils.command.register as orig -class register(_register): - __doc__ = _register.__doc__ +class register(orig.register): + __doc__ = orig.register.__doc__ def run(self): # Make sure that we are using valid current name/version info self.run_command('egg_info') - _register.run(self) - + orig.register.run(self) |