~xnox/ubuntu-archive-tools/sru-report-autopkgtest-vomit

« back to all changes in this revision

Viewing changes to queue

  • Committer: Colin Watson
  • Date: 2012-12-13 14:50:11 UTC
  • Revision ID: cjwatson@canonical.com-20121213145011-8xvn3h432hz4197x
make all scripts pass current stricter pep8(1) in raring

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
    "Accepted",
48
48
    "Done",
49
49
    "Rejected",
50
 
    )
 
50
)
51
51
 
52
52
 
53
53
now = datetime.now(pytz.timezone("UTC"))
90
90
                    "Item %s is in queue %s, not requested queue %s" %
91
91
                    (item.id, item.status, options.queue))
92
92
            if (item.distroseries != options.series or
93
 
                item.pocket != options.pocket):
 
93
                    item.pocket != options.pocket):
94
94
                if item.pocket == "Release":
95
95
                    item_suite = item.distroseries.name
96
96
                else:
381
381
    'reject': reject,
382
382
    'override': override,
383
383
    'report': report,
384
 
    }
 
384
}
385
385
 
386
386
 
387
387
def main():