http://bugs.gpodder.org/show_bug.cgi?id=202





--- Comment #2 from David Bourgeois <[EMAIL PROTECTED]>  2008-09-24 10:11:47 ---
I found that sync.py:495 merges the basename and extension that are in
different encodings. Extension is in unicode while filename_base is str
(util.py detects the default encoding on my system: 'iso-8859-15')

Probably not the right solution but replacing line 495 by this fixes the
problem:

        from util import encoding
        to_file = filename_base +
os.path.splitext(from_file)[1].lower().encode(encoding, 'ignore')

I just saw you reply, I'll have a check to the git version now.


-- 
Configure bugmail: http://bugs.gpodder.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
_______________________________________________
gPodder-Bugs mailing list
[email protected]
https://lists.berlios.de/mailman/listinfo/gpodder-bugs

Reply via email to