Mercurial > p > roundup > code
view roundup/dist/command/install_lib.py @ 4848:e8ae54db8b95
Fix issue2550822 (3e36a3bc0335 and 843886af0ea1) for multilinks, too
| author | Thomas Arendsen Hein <thomas@intevation.de> |
|---|---|
| date | Wed, 13 Nov 2013 11:13:26 +0100 |
| parents | 85dfe17c182e |
| children | 42bf0a707763 |
line wrap: on
line source
from roundup.dist.command.build import build_message_files, check_manifest from distutils.command.install_lib import install_lib as base class install_lib(base): def run(self): check_manifest() build_message_files(self) base.run(self)
