launchpad-reviewers team mailing list archive
-
launchpad-reviewers team
-
Mailing list archive
-
Message #02429
lp:~allenap/launchpad/freedesktop-importance-flip-flop-bug-707478 into lp:launchpad
Gavin Panella has proposed merging lp:~allenap/launchpad/freedesktop-importance-flip-flop-bug-707478 into lp:launchpad.
Requested reviews:
Launchpad code reviewers (launchpad-reviewers)
For more details, see:
https://code.launchpad.net/~allenap/launchpad/freedesktop-importance-flip-flop-bug-707478/+merge/47667
For some reason bugs.freedesktop.org (Bugzilla 3.4.6) has decided to take notice of the columnlist parameter we pass over. It was incorrect, now it's not :)
--
https://code.launchpad.net/~allenap/launchpad/freedesktop-importance-flip-flop-bug-707478/+merge/47667
Your team Launchpad code reviewers is requested to review the proposed merge of lp:~allenap/launchpad/freedesktop-importance-flip-flop-bug-707478 into lp:launchpad.
=== modified file 'lib/lp/bugs/externalbugtracker/bugzilla.py'
--- lib/lp/bugs/externalbugtracker/bugzilla.py 2011-01-19 00:10:48 +0000
+++ lib/lp/bugs/externalbugtracker/bugzilla.py 2011-01-27 15:09:02 +0000
@@ -357,7 +357,9 @@
data = {
'form_name': 'buglist.cgi',
'bug_id_type': 'include',
- 'columnlist': 'id,product,bug_status,resolution',
+ 'columnlist':
+ ('id,product,bug_status,resolution,'
+ 'priority,bug_severity'),
'bug_id': ','.join(bug_ids),
}
if self.version < (2, 17, 1):