https://bugs.gpodder.org/show_bug.cgi?id=1554

--- Comment #2 from Thomas Perl <[email protected]> 2012-02-20 14:19:26 GMT ---
(In reply to comment #1)
> I think gpo rename fixed this
> 
> Renamed netzpolitik.org » netzpolitikTV to netzpolitik.

Can you try to apply this patch to util.py and then rename it back to the
faulty name?

diff --git a/src/gpodder/util.py b/src/gpodder/util.py
index 93c1b9e..a5d7ebb 100644
--- a/src/gpodder/util.py
+++ b/src/gpodder/util.py
@@ -1460,9 +1460,9 @@ def generate_names(filename):
     basename, ext = os.path.splitext(filename)
     for i in itertools.count():
         if i:
-            yield '%s (%d)%s' % (basename, i+1, ext)
+            yield sanitize_encoding('%s (%d)%s' % (basename, i+1, ext))
         else:
-            yield filename
+            yield sanitize_encoding(filename)


 def is_known_redirecter(url):

-- 
Configure bugmail: https://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