[Webkit-unassigned] [Bug 137794] commit-queue: fails to close bugs after successfully landing patches
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Thu Oct 16 15:31:45 PDT 2014
https://bugs.webkit.org/show_bug.cgi?id=137794
David Kilzer (:ddkilzer) <ddkilzer at webkit.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Assignee|webkit-unassigned at lists.web |ddkilzer at webkit.org
|kit.org |
--- Comment #1 from David Kilzer (:ddkilzer) <ddkilzer at webkit.org> ---
Using Web Inspector, it looks like there are two <textarea> elements with the name "comment", and Mechanize is choosing the first one:
Load: <https://bugs.webkit.org/attachment.cgi?id=239956&action=edit>
#1: <textarea name="comment" id="editFrame" class="bz_default_hidden" wrap="soft" disabled="disabled" rows="10" cols="80">
#2: <textarea name="comment" id="comment" wrap="soft" rows="10" cols="80">
I think changing line 757 in bugzilla.py will fix this:
- self.browser.set_value(comment_text, name='comment', nr=0)
+ self.browser.set_value(comment_text, name='comment', nr=1)
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20141016/2fa9f576/attachment-0002.html>
More information about the webkit-unassigned
mailing list