File: register.py

package info (click to toggle)
distribute 0.6.24-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 2,052 kB
  • sloc: python: 10,224; ansic: 198; makefile: 133
file content (10 lines) | stat: -rw-r--r-- 277 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
from distutils.command.register import register as _register

class register(_register):
    __doc__ = _register.__doc__

    def run(self):
        # Make sure that we are using valid current name/version info
        self.run_command('egg_info')
        _register.run(self)