~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/canonical/launchpad/scripts/gina/changelog.py

  • Committer: Curtis Hovey
  • Date: 2007-08-04 15:40:41 UTC
  • mto: This revision was merged to the branch mainline in revision 4670.
  • Revision ID: curtis.hovey@canonical.com-20070804154041-xzxst2oxf0skswbu
Normalized comments for bug 3732.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
    urgency = None
23
23
    match = urgency_re.search(line)
24
24
    if match:
25
 
        # XXX: why do we do lower() here?
 
25
        # XXX kiko 2005-11-05: Why do we do lower() here?
26
26
        urgency = match.group(1).lower()
27
27
 
28
28
    return (srcpkg, version, urgency)