File: register.py

package info (click to toggle)
python-setuptools 32.3.1-1
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 2,848 kB
  • ctags: 3,346
  • sloc: python: 19,099; ansic: 195; makefile: 97; xml: 14
file content (10 lines) | stat: -rwxr-xr-x 270 bytes parent folder | download | duplicates (16)
1
2
3
4
5
6
7
8
9
10
import distutils.command.register as orig


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')
        orig.register.run(self)