summaryrefslogtreecommitdiffstats
path: root/lib/bb/ui/depexp.py
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2008-12-06 13:03:19 +0000
committerRichard Purdie <rpurdie@linux.intel.com>2008-12-06 13:03:19 +0000
commit9f5dbcce6fd49383821d5f36fb88d35ddabc613f (patch)
treebe1c7ff28be3d2441a234712ea1f1e7623c55b58 /lib/bb/ui/depexp.py
parenta946f9b948adb5046de65ee98c5cdebd803888d5 (diff)
downloadbitbake-9f5dbcce6fd49383821d5f36fb88d35ddabc613f.tar.gz
Update the UIs against the core changes and allow dynamic loading of the UI so UIs become truly plugable.
Diffstat (limited to 'lib/bb/ui/depexp.py')
-rw-r--r--lib/bb/ui/depexp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/ui/depexp.py b/lib/bb/ui/depexp.py
index becbb5dd5..9d92fa0a0 100644
--- a/lib/bb/ui/depexp.py
+++ b/lib/bb/ui/depexp.py
@@ -202,7 +202,7 @@ def init(server, eventHandler):
if not cmdline or cmdline[0] != "generateDotGraph":
print "This UI is only compatible with the -g option"
return
- ret = server.runCommand(["generateDepTreeEvent", cmdline[1]])
+ ret = server.runCommand(["generateDepTreeEvent", cmdline[1], cmdline[2]])
if ret != True:
print "Couldn't run command! %s" % ret
return