Changeset 60938 in webkit


Ignore:
Timestamp:
Jun 9, 2010 10:38:32 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-06-09 Adam Barth <abarth@webkit.org>

Reviewed by Ojan Vafai.

webkit-patch upload fails for security bugs because there's no rietveld flag
https://bugs.webkit.org/show_bug.cgi?id=40309

There's probably a more elegant way of seeing whether the form control
exists, but this seems to work.

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

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r60924 r60938  
     12010-06-09  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Ojan Vafai.
     4
     5        webkit-patch upload fails for security bugs because there's no rietveld flag
     6        https://bugs.webkit.org/show_bug.cgi?id=40309
     7
     8        There's probably a more elegant way of seeing whether the form control
     9        exists, but this seems to work.
     10
     11        * Scripts/webkitpy/common/net/bugzilla.py:
     12
    1132010-06-09  Ojan Vafai  <ojan@chromium.org>
    214
  • trunk/WebKitTools/Scripts/webkitpy/common/net/bugzilla.py

    r60924 r60938  
    639639            self.browser['flag_type-3'] = ('X',)
    640640
    641         # Add all patches to the rietveld upload queue.
    642         self.browser['flag_type-4'] = ('?',)
     641        try:
     642            # Add all patches to the rietveld upload queue.
     643            self.browser['flag_type-4'] = ('?',)
     644        except ControlNotFoundError, e:
     645            pass  # If there is no rietveld flag, we can't set it.
    643646
    644647        if bug_id:
Note: See TracChangeset for help on using the changeset viewer.