~launchpad-pqm/launchpad/devel

12289.13.1 by Henning Eggers
Wrote script.
1
#!/usr/bin/python -S
2
#
12289.12.20 by Henning Eggers
Applied reviewer comments to script.
3
# Copyright 2011 Canonical Ltd.  This software is licensed under the
12289.13.1 by Henning Eggers
Wrote script.
4
# GNU Affero General Public License version 3 (see the file LICENSE).
5
# pylint: disable-msg=W0403
6
7
"""Upload translations to given package."""
8
9
__metaclass__ = type
10
11
import _pythonpath
12
13
from lp.translations.scripts.upload_translations import (
14612.2.7 by William Grant
scripts
14
    UploadPackageTranslations,
15
    )
12289.13.1 by Henning Eggers
Wrote script.
16
17
18
if __name__ == '__main__':
19
    script = UploadPackageTranslations('upload-translations')
20
    script.run()