Project

General

Profile

Statistics
| Branch: | Revision:

root / env / lib / python2.7 / site-packages / distribute-0.6.19-py2.7.egg / setuptools / command / register.py @ 1a305335

History | View | Annotate | Download (277 Bytes)

1 1a305335 officers
from distutils.command.register import register as _register
2
3
class register(_register):
4
    __doc__ = _register.__doc__
5
6
    def run(self):
7
        # Make sure that we are using valid current name/version info
8
        self.run_command('egg_info')
9
        _register.run(self)