~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to buildmailman.py

  • Committer: William Grant
  • Date: 2012-01-01 03:03:28 UTC
  • mto: This revision was merged to the branch mainline in revision 14614.
  • Revision ID: william.grant@canonical.com-20120101030328-xtkp6ob1q8h40sxw
Format the non-contrib bits of lib.

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
14
 
17
15
from lp.services.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