zaheer - in flumotion/branches/eaters-info-1: .
flumotion/component/producers/videotest
flumotion-commit at lists.fluendo.com
flumotion-commit at lists.fluendo.com
Wed Mar 14 12:52:28 CET 2007
Author: zaheer
Date: Wed Mar 14 12:52:26 2007
New Revision: 4631
Modified:
flumotion/branches/eaters-info-1/ChangeLog
flumotion/branches/eaters-info-1/flumotion/component/producers/videotest/videotest.py
Log:
2007-03-14 Zaheer Abbas Merali <zaheerabbas at merali dot org>
* flumotion/component/producers/videotest/videotest.py:
Fix check, as (0, 10, 12, 0) is greater than (0, 10, 12).
Modified: flumotion/branches/eaters-info-1/ChangeLog
==============================================================================
--- flumotion/branches/eaters-info-1/ChangeLog (original)
+++ flumotion/branches/eaters-info-1/ChangeLog Wed Mar 14 12:52:26 2007
@@ -1,5 +1,10 @@
2007-03-14 Zaheer Abbas Merali <zaheerabbas at merali dot org>
+ * flumotion/component/producers/videotest/videotest.py:
+ Fix check, as (0, 10, 12, 0) is greater than (0, 10, 12).
+
+2007-03-14 Zaheer Abbas Merali <zaheerabbas at merali dot org>
+
* flumotion/component/base/admin_gtk.py:
'source' is not necessarily specified in config.
Modified: flumotion/branches/eaters-info-1/flumotion/component/producers/videotest/videotest.py
==============================================================================
--- flumotion/branches/eaters-info-1/flumotion/component/producers/videotest/videotest.py (original)
+++ flumotion/branches/eaters-info-1/flumotion/component/producers/videotest/videotest.py Wed Mar 14 12:52:26 2007
@@ -72,9 +72,10 @@
if 'drop-probability' in properties:
vt = gstreamer.get_plugin_version('coreelements')
+ self.debug("Version: %r " % (vt,))
if not vt:
raise errors.MissingElementError('identity')
- if not vt > (0, 10, 12):
+ if not vt > (0, 10, 12, 0):
self.addMessage(
messages.Warning(T_(N_(
"The 'drop-probability' property is specified, but "
More information about the flumotion-commit
mailing list