Update gdbus.py

This commit is contained in:
Pascal Vizeli 2018-04-20 09:58:49 +02:00 committed by GitHub
parent 157e48f946
commit 5a6051f9a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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