Fix TypeError
This commit is contained in:
parent
d1051a7e3e
commit
5c61305860
1 changed files with 1 additions and 1 deletions
|
|
@ -73,7 +73,7 @@ class Admin(object):
|
|||
action = getattr(self, "_action_" + action_name)
|
||||
except AttributeError as e:
|
||||
if not self._dbus:
|
||||
self._error(e + ", action '%s' is not implemented" % action_name)
|
||||
self._error(str(e) + ", action '%s' is not implemented" % action_name)
|
||||
return False
|
||||
if self._dbus:
|
||||
try:
|
||||
|
|
|
|||
Loading…
Reference in a new issue