~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to utilities/roundup-sniffer.py

  • Committer: Curtis Hovey
  • Date: 2011-12-28 17:03:06 UTC
  • mto: This revision was merged to the branch mainline in revision 14605.
  • Revision ID: curtis.hovey@canonical.com-20111228170306-n9fz94h85ckaoaf3
Separate test-authoring classes from test-running classes.

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
39
38
import csv
40
39
import optparse
 
40
import sys
 
41
import urllib2
 
42
 
 
43
from base64 import urlsafe_b64encode
41
44
from os import mkdir
42
 
from os.path import (
43
 
    exists,
44
 
    join,
45
 
    )
 
45
from os.path import join, exists
46
46
from pprint import pprint
47
 
import sys
48
47
from time import sleep
49
48
from urllib import urlencode
50
 
import urllib2
51
49
 
52
50
from BeautifulSoup import BeautifulSoup
53
51