aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/command/register.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2014-04-30 17:38:29 -0400
committerJason R. Coombs <jaraco@jaraco.com>2014-04-30 17:38:29 -0400
commit573c2c86d4d4f506a87a1fc16060f32c1386ad38 (patch)
treed8e3e14b773461dc4e555ff76d9c6180f958cee0 /setuptools/command/register.py
parent0f0c892487277e25ce79a39477b193822f1edf79 (diff)
downloadexternal_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-xsetuptools/command/register.py9
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)