register.py 280 B

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