From 5a6051f9a11c34fb7557b155769fd6144e8898c6 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Fri, 20 Apr 2018 09:58:49 +0200 Subject: [PATCH] Update gdbus.py --- hassio/misc/gdbus.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hassio/misc/gdbus.py b/hassio/misc/gdbus.py index 4f18761f2..0d0d97904 100644 --- a/hassio/misc/gdbus.py +++ b/hassio/misc/gdbus.py @@ -30,7 +30,8 @@ class Dbus(object): bus=self.bus_name, obj=self.object_path, method=method, - args=" ".join(args))) + args=" ".join(map(str, args)) + )) # Run command try: