Changeset 22

Show
Ignore:
Timestamp:
10/04/08 12:28:45 (2 years ago)
Author:
Jonathan Jacobs <korpse@…>
Message:

Sorta maybe kinda almost hopefully nearly fix PHP from inflicting it's retardedness on us.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • procyon/api/tvdb.py

    r16 r22  
    346346def _textOrNone(elem): 
    347347    if elem is not None and elem.text is not None: 
    348         return unicode(elem.text) 
     348        # PHP just fails at absolutely everything.  STOP TRIPLE ESCAPING YOUR 
     349        # STRINGS YOU GODDAMN PHP CODEMONKEYS! 
     350        return unicode(elem.text).encode('utf8').decode('unicode-escape') 
    349351    return None 
    350352