[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:51:48 UTC 2009


The following commit has been merged in the master branch:
commit 75e00b0d4fe512f3852375a3faecc6bdc7ba2be3
Author: Michael 'Mickey' Lauer <mickey at vanille-media.de>
Date:   Wed Dec 31 21:19:00 2008 +0100

    cli-framework: convert dbus.Int64

diff --git a/tools/cli-framework b/tools/cli-framework
index 9a856d2..a08b6b1 100755
--- a/tools/cli-framework
+++ b/tools/cli-framework
@@ -10,7 +10,7 @@ Interactive console for the freesmartphone.org framework
 GPLv2 or later
 """
 
-__version__ = "0.9.1.4"
+__version__ = "0.9.1.5"
 
 import dbus.service
 import dbus.mainloop.glib
@@ -22,7 +22,7 @@ pp = pprint.PrettyPrinter( indent=4 )
 #----------------------------------------------------------------------------#
 def dbus_to_python(v):
 #----------------------------------------------------------------------------#
-    if isinstance(v, dbus.Int32) or type(v) == types.IntType:
+    if isinstance(v, dbus.Int64) or isinstance(v, dbus.Int32) or type(v) == types.IntType:
         return int(v)
     elif isinstance(v, dbus.String) or type(v) == types.StringType:
         return str(v)

-- 
FSO frameworkd Debian packaging



More information about the pkg-fso-commits mailing list