wingo - in flumotion/trunk: .
flumotion/component/consumers/httpstreamer
flumotion-commit at lists.fluendo.com
flumotion-commit at lists.fluendo.com
Sun Jan 21 13:28:58 CET 2007
Author: wingo
Date: Sun Jan 21 13:28:48 2007
New Revision: 4414
Modified:
flumotion/trunk/ChangeLog
flumotion/trunk/flumotion/component/consumers/httpstreamer/http.py
Log:
2007-01-21 Andy Wingo <wingo at pobox.com>
* flumotion/component/consumers/httpstreamer/http.py
(MultifdSinkStreamer.do_check): Join strings, not ints. Thanks to
Johan for the tip.
Modified: flumotion/trunk/ChangeLog
==============================================================================
--- flumotion/trunk/ChangeLog (original)
+++ flumotion/trunk/ChangeLog Sun Jan 21 13:28:48 2007
@@ -1,3 +1,9 @@
+2007-01-21 Andy Wingo <wingo at pobox.com>
+
+ * flumotion/component/consumers/httpstreamer/http.py
+ (MultifdSinkStreamer.do_check): Join strings, not ints. Thanks to
+ Johan for the tip.
+
2007-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
* configure.ac:
Modified: flumotion/trunk/flumotion/component/consumers/httpstreamer/http.py
==============================================================================
--- flumotion/trunk/flumotion/component/consumers/httpstreamer/http.py (original)
+++ flumotion/trunk/flumotion/component/consumers/httpstreamer/http.py Sun Jan 21 13:28:48 2007
@@ -317,7 +317,7 @@
if version < (0, 10, 9, 1):
m = messages.Error(T_(N_(
"Version %s of the '%s' GStreamer plug-in is too old.\n"),
- ".".join(version), 'multifdsink'))
+ ".".join(map(str, version)), 'multifdsink'))
m.add(T_(N_("Please upgrade '%s' to version %s."),
'gst-plugins-base', '0.10.10'))
self.addMessage(m)
More information about the flumotion-commit
mailing list