aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-09-17 21:32:00 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-09-17 21:32:00 +0000
commit809f6343685cf2acc3e357d035bde67e1f651d8e (patch)
treee9bee1e5dace7dc188cb9026ac66cde6f00ae12b /lib/python
parentfde2880921e08e3546581a863e6292923c299959 (diff)
downloadenigma2-809f6343685cf2acc3e357d035bde67e1f651d8e.tar.gz
enigma2-809f6343685cf2acc3e357d035bde67e1f651d8e.zip
use _ as separator instead of : for picon filenames
for better compatibility with vfat based filesystems on some cf cards or usb sticks
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Components/Renderer/Picon.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/Renderer/Picon.py b/lib/python/Components/Renderer/Picon.py
index 2dfafb99..a9c36f2b 100644
--- a/lib/python/Components/Renderer/Picon.py
+++ b/lib/python/Components/Renderer/Picon.py
@@ -26,7 +26,7 @@ class Picon(Renderer):
# strip all after last :
pos = sname.rfind(':')
if pos != -1:
- sname = sname[:pos].rstrip(':')
+ sname = sname[:pos].rstrip(':').replace(':','_')
pngname = self.nameCache.get(sname, "")
if pngname == "":
pngname = self.findPicon(sname)