1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/usr/bin/python2.4
# pylint: disable-msg=W0403
# Copyright 2009 Canonical Ltd. All rights reserved.
"""Commit translations to translations_branch where requested."""
__metaclass__ = type
__all__ = []
import _pythonpath
from lp.translations.scripts.translations_to_branch import (
ExportTranslationsToBranch)
if __name__ == '__main__':
script = ExportTranslationsToBranch(
'translations-export-to-branch', dbuser='translationstobranch')
script.lock_and_run()
|