[pkg-fso-commits] [SCM] FSO frameworkd Debian packaging branch, master, updated. milestone4-368-g700ab82

Michael 'Mickey' Lauer mickey at vanille-media.de
Mon Feb 2 18:52:02 UTC 2009


The following commit has been merged in the master branch:
commit 3a1763ffe2ed679c0308ebc5b4ced8b8534548d9
Author: Michael 'Mickey' Lauer <mickey at vanille-media.de>
Date:   Wed Jan 21 06:59:41 2009 +0100

    ogsmd: channel: remove unicode warning; it's quite normal we get unicode via dbus

diff --git a/framework/subsystems/ogsmd/gsm/channel.py b/framework/subsystems/ogsmd/gsm/channel.py
index 6f46f5e..eee0cdb 100644
--- a/framework/subsystems/ogsmd/gsm/channel.py
+++ b/framework/subsystems/ogsmd/gsm/channel.py
@@ -14,7 +14,7 @@ This module provides communication channel abstractions that
 transport their data over a (virtual) serial line.
 """
 
-__version__ = "0.9.9.4"
+__version__ = "0.9.9.5"
 MODULE_NAME = "ogsmd.channel"
 
 from ogsmd.gsm.decor import logged
@@ -299,7 +299,6 @@ class QueuedVirtualChannel( VirtualChannel ):
         Enqueue data block for sending over the channel.
         """
         if type( data ) == types.UnicodeType:
-            logger.warning( "%s: Got unicode input. Trying to convert to plain string..." % self )
             data = str( data )
         self.q.put( ( data, response_cb, error_cb, timeout or self.timeout ) )
         if not self.connected:

-- 
FSO frameworkd Debian packaging



More information about the pkg-fso-commits mailing list