1
0
mirror of https://github.com/gryf/wicd.git synced 2026-02-13 12:25:56 +01:00

fixed a bug in the open/close gui function in dapper.py

fixed a bug in getdebugmode function in daemon.py
This commit is contained in:
imdano
2007-07-28 11:19:18 +00:00
parent e7f5f269fe
commit 80c6c22951
2 changed files with 2 additions and 2 deletions

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 bool(int(self.debug_mode))
return self.debug_mode
#end function GetDebugMode
@dbus.service.method('org.wicd.daemon')