thomasvs - in flumotion/trunk: . flumotion/worker/checks
flumotion-commit at lists.fluendo.com
flumotion-commit at lists.fluendo.com
Thu Mar 8 19:52:27 CET 2007
Author: thomasvs
Date: Thu Mar 8 19:52:25 2007
New Revision: 4610
Modified:
flumotion/trunk/ChangeLog
flumotion/trunk/flumotion/worker/checks/check.py
Log:
* flumotion/worker/checks/check.py:
Fix pychecker error.
Modified: flumotion/trunk/ChangeLog
==============================================================================
--- flumotion/trunk/ChangeLog (original)
+++ flumotion/trunk/ChangeLog Thu Mar 8 19:52:25 2007
@@ -1,6 +1,11 @@
2007-03-08 Thomas Vander Stichele <thomas at apestaart dot org>
* flumotion/worker/checks/check.py:
+ Fix pychecker error.
+
+2007-03-08 Thomas Vander Stichele <thomas at apestaart dot org>
+
+ * flumotion/worker/checks/check.py:
add a generic checkPlugin method to be used in checks
2007-03-08 Thomas Vander Stichele <thomas at apestaart dot org>
Modified: flumotion/trunk/flumotion/worker/checks/check.py
==============================================================================
--- flumotion/trunk/flumotion/worker/checks/check.py (original)
+++ flumotion/trunk/flumotion/worker/checks/check.py Thu Mar 8 19:52:25 2007
@@ -146,11 +146,11 @@
if version < minimumVersion:
m = messages.Error(T_(
N_("Version %s of the '%s' GStreamer plug-in is too old.\n"),
- string.join([str(x) for x in version], '.'), pluginName),
+ ".".join([str(x) for x in version]), pluginName),
id = 'plugin-%s-check' % pluginName)
m.add(T_(N_(
"Please upgrade '%s' to version %s."), packageName,
- string.join([str(x) for x in minimumVersion], '.')))
+ ".".join([str(x) for x in minimumVersion])))
result.add(m)
result.succeed(None)
More information about the flumotion-commit
mailing list