~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to scripts/mlist-import.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-09-26 16:35:37 UTC
  • mfrom: (13995.1.6 add-longpoll)
  • Revision ID: launchpad@pqm.canonical.com-20110926163537-o17y6ic6g9i3g943
[r=julian-edwards][no-qa] Upgrade txlongpoll version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/python -S
2
2
#
3
 
# Copyright 2009-2011 Canonical Ltd.  This software is licensed under the
 
3
# Copyright 2009 Canonical Ltd.  This software is licensed under the
4
4
# GNU Affero General Public License version 3 (see the file LICENSE).
5
5
 
6
6
"""Import a mailing list (well, parts of it)."""
16
16
    ]
17
17
 
18
18
 
 
19
# pylint: disable-msg=W0403
 
20
import _pythonpath
 
21
 
 
22
import sys
19
23
import logging
20
 
import sys
21
24
import textwrap
22
25
 
23
 
# pylint: disable-msg=W0403
24
 
import _pythonpath
25
 
 
26
26
from canonical.config import config
 
27
from lp.services.scripts.base import LaunchpadScript
27
28
from canonical.launchpad.scripts.mlistimport import Importer
28
 
from lp.services.scripts.base import LaunchpadScript
29
29
 
30
30
 
31
31
class MailingListImport(LaunchpadScript):