Changeset 45192 in webkit


Ignore:
Timestamp:
Jun 25, 2009 2:26:24 PM (15 years ago)
Author:
eric@webkit.org
Message:

2009-06-25 Tor Arne Vestbø <tor.arne.vestbo@nokia.com>

Reviewed by Dave Levin.

Use unicode() instead of str when reading from bugzilla.
Also add Simon Fraser as a reviewer.
https://bugs.webkit.org/show_bug.cgi?id=26719

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

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r45175 r45192  
     12009-06-25  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
     2
     3        Reviewed by Dave Levin.
     4
     5        Use unicode() instead of str when reading from bugzilla.
     6        Also add Simon Fraser as a reviewer.
     7        https://bugs.webkit.org/show_bug.cgi?id=26719
     8
     9        * Scripts/modules/bugzilla.py:
     10
    1112009-06-25  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
    212
  • trunk/WebKitTools/Scripts/modules/bugzilla.py

    r45174 r45192  
    101101        "oliver" : "Oliver Hunt",
    102102        "sam" : "Sam Weinig",
     103        "simon.fraser" : "Simon Fraser",
    103104        "staikos" : "George Staikos",
    104105        "timothy" : "Timothy Hatcher",
     
    148149            attachment['url'] = self.bug_server + attachment_link['href'] # urls are relative
    149150            attachment['id'] = attachment['url'].split('=')[1] # e.g. https://bugs.webkit.org/attachment.cgi?id=31223
    150             attachment['name'] = str(attachment_link.string) # w/o str it returns some sort of non-string object
     151            attachment['name'] = unicode(attachment_link.string) # .string returns some kind of non-string object
    151152            # attachment['type'] = cells[1]
    152153            # attachment['date'] = cells[2]
Note: See TracChangeset for help on using the changeset viewer.