* morituri/extern/task/gstreamer.py:

Fix wrong commit made to fix #89.
This commit is contained in:
Thomas Vander Stichele
2012-11-18 14:57:56 +00:00
parent cd90c361a6
commit 3370acac68
2 changed files with 6 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2012-11-18 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/extern/task/gstreamer.py:
Fix wrong commit made to fix #89.
2012-11-17 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/rip/offset.py:

View File

@@ -29,7 +29,7 @@ def quoteParse(path):
# Make sure double quotes and backslashes are escaped. See
# morituri.test.test_common_checksum.NormalPathTestCase
return path.replace('"', '\\"').replace('\\', '\\\\')
return path.replace('\\', '\\\\').replace('"', '\\"')
class GstException(Exception):