Changeset 53396 in webkit


Ignore:
Timestamp:
Jan 18, 2010 1:29:05 AM (14 years ago)
Author:
abarth@webkit.org
Message:

2010-01-18 Adam Barth <abarth@webkit.org>

Unreviewed "build" fix.

  • Scripts/webkitpy/bugzilla.py:
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r53395 r53396  
     12010-01-18  Adam Barth  <abarth@webkit.org>
     2
     3        Unreviewed "build" fix.
     4
     5        * Scripts/webkitpy/bugzilla.py:
     6
    172010-01-18  Adam Barth  <abarth@webkit.org>
    28
  • trunk/WebKitTools/Scripts/webkitpy/bugzilla.py

    r53395 r53396  
    409409        self.browser.add_file(patch_file_object, "text/plain", patch_name, 'data')
    410410
    411     def add_patch_to_bug(self, bug_id, patch_file_object, description, comment_text=None, mark_for_review=False, mark_for_commit_queue=False):
     411    def add_patch_to_bug(self, bug_id, patch_file_object, description, comment_text=None, mark_for_review=False, mark_for_commit_queue=False, mark_for_landing=False):
    412412        self.authenticate()
    413413
     
    420420        self.browser.open("%sattachment.cgi?action=enter&bugid=%s" % (self.bug_server_url, bug_id))
    421421        self.browser.select_form(name="entryform")
    422         self._fill_attachment_form(description, patch_file_object, mark_for_review=mark_for_review, mark_for_commit_queue=mark_for_commit_queue, bug_id=bug_id)
     422        self._fill_attachment_form(description, patch_file_object, mark_for_review=mark_for_review, mark_for_commit_queue=mark_for_commit_queue, mark_for_landing=mark_for_landing, bug_id=bug_id)
    423423        if comment_text:
    424424            log(comment_text)
Note: See TracChangeset for help on using the changeset viewer.