+2009-07-03 Maciej Stachowiak <mjs@apple.com>
+
+ Reviewed by Eric Seidel.
+
+ bugzilla-tool forgot how to obsolete patches
+ https://bugs.webkit.org/show_bug.cgi?id=26951
+
+ * Scripts/modules/bugzilla.py:
+
2009-07-02 Brent Fulgham <bfulgham@webkit.org>
Unreviewed build fix (Cairo this time) for DumpRenderTree.
attachment['id'] = str(element.find('attachid').string)
attachment['url'] = self.attachment_url_for_id(attachment['id'])
attachment['name'] = unicode(element.find('desc').string)
- attachment['type'] = str(element.find('ctype').string)
+ attachment['type'] = str(element.find('type').string)
review_flag = element.find('flag', attrs={"name" : "review"})
if review_flag and review_flag['status'] == '+':
return
self.browser.open(self.attachment_url_for_id(attachment_id, 'edit'))
- self.browser.select_form(nr=0)
+ self.browser.select_form(nr=1)
self.browser.find_control('isobsolete').items[0].selected = True
# Also clear any review flag (to remove it from review/commit queues)
self.browser.find_control(type='select', nr=0).value = ("X",)