Changeset 174797 in webkit


Ignore:
Timestamp:
Oct 16, 2014 3:43:02 PM (10 years ago)
Author:
ddkilzer@apple.com
Message:

commit-queue: fails to close bugs after successfully landing patches
<http://webkit.org/b/137794>

Reviewed by Alexey Proskuryakov.

  • Scripts/webkitpy/common/net/bugzilla/bugzilla.py:

(Bugzilla.clear_attachment_flags): Change 'nr=0' to 'nr=1' to
tell Mechanize to use the second <textarea> on the page with
name="comment".

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r174796 r174797  
     12014-10-16  David Kilzer  <ddkilzer@apple.com>
     2
     3        commit-queue: fails to close bugs after successfully landing patches
     4        <http://webkit.org/b/137794>
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        * Scripts/webkitpy/common/net/bugzilla/bugzilla.py:
     9        (Bugzilla.clear_attachment_flags): Change 'nr=0' to 'nr=1' to
     10        tell Mechanize to use the second <textarea> on the page with
     11        name="comment".
     12
    1132014-10-16  Brent Fulgham  <bfulgham@apple.com>
    214
  • trunk/Tools/Scripts/webkitpy/common/net/bugzilla/bugzilla.py

    r174248 r174797  
    755755        self.browser.open(self.attachment_url_for_id(attachment_id, 'edit'))
    756756        self.browser.select_form(nr=1)
    757         self.browser.set_value(comment_text, name='comment', nr=0)
     757        self.browser.set_value(comment_text, name='comment', nr=1)
    758758        self._find_select_element_for_flag('review').value = ("X",)
    759759        self._find_select_element_for_flag('commit-queue').value = ("X",)
Note: See TracChangeset for help on using the changeset viewer.