]> git.pld-linux.org Git - packages/quodlibet.git/blame - quodlibet-non_utf8_filenames.patch
- patch to stop Quot Libet crash on non-utf8 filenames
[packages/quodlibet.git] / quodlibet-non_utf8_filenames.patch
CommitLineData
1140f54b
JK
1diff -durN quodlibet-0.10.1.orig/library.py quodlibet-0.10.1/library.py
2--- quodlibet-0.10.1.orig/library.py 2005-03-30 11:25:15.000000000 +0200
3+++ quodlibet-0.10.1/library.py 2005-05-08 20:16:39.000000000 +0200
4@@ -233,7 +233,7 @@
5 added, changed = 0, 0
6
7 for d in dirs:
8- print to(_("Checking %s") % d)
9+ print to(_("Checking %s") % d.decode("utf-8", "replace"))
10 d = os.path.expanduser(d)
11 for path, dnames, fnames in os.walk(d):
12 for fn in fnames:
This page took 0.048194 seconds and 4 git commands to generate.