~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to buildmailman.py

  • Committer: Curtis Hovey
  • Date: 2011-12-18 15:13:07 UTC
  • mto: This revision was merged to the branch mainline in revision 14547.
  • Revision ID: curtis.hovey@canonical.com-20111218151307-sdm2gzobt5tplbe0
Moved badges to lp.app.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
# Copyright 2009, 2010 Canonical Ltd.  This software is licensed under the
4
4
# GNU Affero General Public License version 3 (see the file LICENSE).
5
5
 
6
 
import errno
 
6
import os
7
7
import grp
8
 
import os
9
8
import pwd
 
9
import sys
 
10
import errno
10
11
import socket
 
12
import tempfile
11
13
import subprocess
12
 
import sys
13
 
import tempfile
14
 
 
15
 
from lazr.config import as_username_groupname
16
 
 
17
 
from lp.services.config import config
 
14
 
 
15
from canonical.config import config
18
16
from lp.services.mailman.config import (
19
 
    configure_prefix,
20
 
    configure_siteowner,
21
 
    )
 
17
    configure_prefix, configure_siteowner)
22
18
from lp.services.mailman.monkeypatches import monkey_patch
23
 
 
 
19
from lazr.config import as_username_groupname
24
20
 
25
21
basepath = [part for part in sys.path if part]
26
22