1
0
Fork 0

Fix TypeError

This commit is contained in:
Tomas Korbar 2018-07-23 14:25:38 +02:00
parent d1051a7e3e
commit 5c61305860

View file

@ -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: