From 47bfa0ee4cd658270e43f43976022932c7cf2c7c Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Sun, 4 Apr 2010 23:21:10 +0000 Subject: [PATCH] * morituri/common/common.py: add quoteParse function to quote properly for gst.parse_launch() * morituri/common/checksum.py: Fix single quote problem. use self.setException() * morituri/common/encode.py: Fix single quote problem. * morituri/image/image.py: Fix single quote problem. Reraise gst.QueryError. * morituri/test/test_common_encode.py: * morituri/test/test_common_encode.py (added): Add tests for unicode/single/double quote. * morituri/test/test_image_image.py: * morituri/test/test_common_checksum.py: Add tests for single/double quote. * morituri/test/common.py: add twisted-like failUnlessRaises to TestCase that returns the exception, so we can check wrapped exceptions in TaskException. Fixes #16. --- ChangeLog | 1 + 1 file changed, 1 insertion(+) diff --git a/ChangeLog b/ChangeLog index 767dee0..86235f1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -19,6 +19,7 @@ * morituri/test/common.py: add twisted-like failUnlessRaises to TestCase that returns the exception, so we can check wrapped exceptions in TaskException. + Fixes #16. 2010-04-05 Thomas Vander Stichele