~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to scripts/publish-distro.py

Undo rename. Again.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 
8
8
import _pythonpath
9
9
 
 
10
from canonical.config import config
10
11
from lp.soyuz.scripts.publishdistro import PublishDistro
11
12
 
12
13
 
13
14
if __name__ == "__main__":
14
 
    script = PublishDistro('publish-distro', dbuser='publish_distro')
 
15
    script = PublishDistro(dbuser=config.archivepublisher.dbuser)
15
16
    script.lock_and_run()