summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetr Nechaev <petr.nechaev@cogentembedded.com>2015-03-05 23:14:52 +0300
committerPetr Nechaev <petr.nechaev@cogentembedded.com>2015-03-30 14:04:54 +0300
commitd29b4946d218d0044af240c316fa492a5ead2909 (patch)
tree72955c6920766ee70940701cf4dbb87ad78a5c96
parentd4f0c746dc1d4dc9226f16b6bd463e7ef3c57994 (diff)
downloadautomotive-message-broker-d29b4946d218d0044af240c316fa492a5ead2909.tar.gz
ambctl: Fix "list" command
Fixes an error introduced by 5b27ff0b268b48fe58546115e2be01c1a8a8e083 to getManager().
-rw-r--r--tools/ambctl.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ambctl.py b/tools/ambctl.py
index ef755654..b8de5186 100644
--- a/tools/ambctl.py
+++ b/tools/ambctl.py
@@ -159,7 +159,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()