Changeset efc6d758b8235f783ad065be17fe17e6d51f32c6

Show
Ignore:
Timestamp:
03/26/08 16:32:04 (10 months ago)
Author:
Jason Michalski <armooo@armooo-desktop.(none)>
git-committer:
Jason Michalski <armooo@armooo-desktop.(none)> 1206567124 -0500
git-parent:

[6413f2b4a6973fc72ba286d1ac250e89e5a5756e]

git-author:
Jason Michalski <armooo@armooo-desktop.(none)> 1206567124 -0500
Message:

Hack to get some unicode to work

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • plugins/admin/admin.py

    red1a74c refc6d75  
    264264        t.unquote = unquote 
    265265        t.len = len 
    266         handler.wfile.write(t) 
     266        o = ''.join([i for i in unicode(t) if i not in (u'\u200b')]) 
     267        handler.wfile.write(o.encode('latin-1')) 
    267268 
    268269    def get_tivo_file(self, url, mak, tivoIP, outfile):