summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorJoshua Lock <joshua.g.lock@intel.com>2017-03-17 15:54:39 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-03-22 11:35:23 +0000
commitad1d65ca32236dd575b11bddd36e3c891f8c5a76 (patch)
tree8aa0d0675a5f72b999c34af43fd72eb69330b0a7 /bitbake
parent9b6b47c09d8ed6b014f6ea0b0ec285245283d8ab (diff)
downloadpoky-ad1d65ca32236dd575b11bddd36e3c891f8c5a76.tar.gz
bitbake: lib/bb/tests/codeparser: update expand syntax in comment
bb.data.expand(x, d) is deprecated API (Bitbake rev: 71185c19205a77d0511fc00baf95a5433e7106d6) Signed-off-by: Joshua Lock <joshua.g.lock@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/tests/codeparser.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/tests/codeparser.py b/bitbake/lib/bb/tests/codeparser.py
index a681841df3..a45a582dd9 100644
--- a/bitbake/lib/bb/tests/codeparser.py
+++ b/bitbake/lib/bb/tests/codeparser.py
@@ -285,8 +285,8 @@ def a():
285 285
286test(d) 286test(d)
287 287
288bb.data.expand(d.getVar("something", False), d) 288d.expand(d.getVar("something", False))
289bb.data.expand("${inexpand} somethingelse", d) 289d.expand("${inexpand} somethingelse")
290d.getVar(a(), False) 290d.getVar(a(), False)
291""" 291"""
292 292