aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2006-04-03 19:53:34 +0000
committerFelix Domke <tmbinc@elitedvb.net>2006-04-03 19:53:34 +0000
commit2ab666d4667355094da4e7ebe468b28ce6ac9345 (patch)
treee5cf56558da83305b4a7ae1c0ac561f18a56f21b /lib/python
parentb7bc48591d6c61ba70cf68cd1d356c6abb1d9f2e (diff)
downloadenigma2-2ab666d4667355094da4e7ebe468b28ce6ac9345.tar.gz
enigma2-2ab666d4667355094da4e7ebe468b28ce6ac9345.zip
disallow '"' in filenames
Diffstat (limited to 'lib/python')
-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 2156a9be..051a8efe 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', '')