1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-30 00:20:08 +00:00

bitbake-dev: rename readVariable to getVariable

Changing the name of this command makes it more consistent with other command
names.
This commit is contained in:
Rob Bradford
2008-10-23 14:58:36 +01:00
parent c26d6cfda0
commit 87fe772b8a
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -32,8 +32,8 @@ parsespin = itertools.cycle( r'|/-\\' )
def init(server, eventHandler):
# Get values of variables which control our output
includelogs = server.runCommand(["readVariable", "BBINCLUDELOGS"])
loglines = server.runCommand(["readVariable", "BBINCLUDELOGS_LINES"])
includelogs = server.runCommand(["getVariable", "BBINCLUDELOGS"])
loglines = server.runCommand(["getVariable", "BBINCLUDELOGS_LINES"])
try:
cmdline = server.runCommand(["getCmdLineAction"])