summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Maw <jonathan.maw@codethink.co.uk>2015-05-06 16:54:46 +0100
committerJonathan Maw <jonathan.maw@codethink.co.uk>2015-05-06 16:55:00 +0100
commit61c888c056ffd24c1ec85f9923ab9aa3a22d34fb (patch)
tree53ad87a8a02e4ec508b9bad62b990070820c537e
parentbc520a5e9358a7bcb701e05aae38437076d53d60 (diff)
downloadautomotive-message-broker-61c888c056ffd24c1ec85f9923ab9aa3a22d34fb.tar.gz
Fix ambctl list
during processCommand, a tuple was returned but was treated like a single value.
-rw-r--r--tools/ambctl.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ambctl.py b/tools/ambctl.py
index 9ddf998f..269b5708 100644
--- a/tools/ambctl.py
+++ b/tools/ambctl.py
@@ -158,7 +158,7 @@ def processCommand(command, commandArgs, noMain=True):
return None
if command == "list" :
- managerInterface = getManager()
+ managerInterface, bus = getManager()
if managerInterface == None:
return 0
supportedList = managerInterface.List()