1
0
mirror of https://github.com/gryf/wicd.git synced 2025-12-20 12:58:07 +01:00

made get debugmode function return an int

This commit is contained in:
imdano
2007-07-29 08:17:00 +00:00
parent 796deb271d
commit 8a9497cc05

View File

@@ -275,7 +275,7 @@ class ConnectionWizard(dbus.service.Object):
@dbus.service.method('org.wicd.daemon')
def GetDebugMode(self):
'''returns whether debugging is enabled'''
return self.debug_mode
return int(self.debug_mode)
#end function GetDebugMode
@dbus.service.method('org.wicd.daemon')