From 3370acac68087d86842893e000357f7567b51c6b Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Sun, 18 Nov 2012 14:57:56 +0000 Subject: [PATCH] * morituri/extern/task/gstreamer.py: Fix wrong commit made to fix #89. --- ChangeLog | 5 +++++ morituri/extern/task/gstreamer.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 81d176d..c590090 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2012-11-18 Thomas Vander Stichele + + * morituri/extern/task/gstreamer.py: + Fix wrong commit made to fix #89. + 2012-11-17 Thomas Vander Stichele * morituri/rip/offset.py: diff --git a/morituri/extern/task/gstreamer.py b/morituri/extern/task/gstreamer.py index 35efbed..6cd7f02 100644 --- a/morituri/extern/task/gstreamer.py +++ b/morituri/extern/task/gstreamer.py @@ -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):