diff options
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) |