aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Tools
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2006-03-27 05:22:47 +0000
committerFelix Domke <tmbinc@elitedvb.net>2006-03-27 05:22:47 +0000
commit9f6a10b46af262567a5add9312927887c86531b8 (patch)
tree8a7f8c22080daf6f2abebdcedbebcf5f184ae416 /lib/python/Tools
parent983b1c68de5a56ec171d409d1d56ff786cc24bdf (diff)
downloadenigma2-9f6a10b46af262567a5add9312927887c86531b8.tar.gz
enigma2-9f6a10b46af262567a5add9312927887c86531b8.zip
do not allow colon in filenames
Diffstat (limited to 'lib/python/Tools')
-rw-r--r--lib/python/Tools/Directories.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Tools/Directories.py b/lib/python/Tools/Directories.py
index d6ffeeea..2156a9be 100644
--- a/lib/python/Tools/Directories.py
+++ b/lib/python/Tools/Directories.py
@@ -100,7 +100,7 @@ def fileExists(f):
def getRecordingFilename(basename):
# filter out non-allowed characters
- non_allowed_characters = "/.\\"
+ non_allowed_characters = "/.\\:"
filename = ""
basename = basename.replace('\xc2\x86', '').replace('\xc2\x87', '')