diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2006-04-03 19:53:34 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2006-04-03 19:53:34 +0000 |
| commit | 2ab666d4667355094da4e7ebe468b28ce6ac9345 (patch) | |
| tree | e5cf56558da83305b4a7ae1c0ac561f18a56f21b /lib/python/Tools | |
| parent | b7bc48591d6c61ba70cf68cd1d356c6abb1d9f2e (diff) | |
| download | enigma2-2ab666d4667355094da4e7ebe468b28ce6ac9345.tar.gz enigma2-2ab666d4667355094da4e7ebe468b28ce6ac9345.zip | |
disallow '"' in filenames
Diffstat (limited to 'lib/python/Tools')
| -rw-r--r-- | lib/python/Tools/Directories.py | 2 |
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', '') |
