~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to utilities/roundup-sniffer.py

  • Committer: William Grant
  • Date: 2012-01-01 03:10:25 UTC
  • mto: This revision was merged to the branch mainline in revision 14614.
  • Revision ID: william.grant@canonical.com-20120101031025-pcl0na3sbgfrztcw
utilities

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
 
36
36
__metaclass__ = type
37
37
 
 
38
from base64 import urlsafe_b64encode
38
39
import csv
39
40
import optparse
40
 
import sys
41
 
import urllib2
42
 
 
43
 
from base64 import urlsafe_b64encode
44
41
from os import mkdir
45
 
from os.path import join, exists
 
42
from os.path import (
 
43
    exists,
 
44
    join,
 
45
    )
46
46
from pprint import pprint
 
47
import sys
47
48
from time import sleep
48
49
from urllib import urlencode
 
50
import urllib2
49
51
 
50
52
from BeautifulSoup import BeautifulSoup
51
53