summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorSaul Wold <Saul.Wold@windriver.com>2022-03-02 16:42:32 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-03-04 17:13:10 +0000
commita8d6882144e76f384022fe7d2b4ee13ad876317a (patch)
tree0ee10c4364da0a66db79fa7f102e82470b7a02f0 /scripts
parentc08a245990eb46906476dc0f6ade0482c7be241d (diff)
downloadopenembedded-core-contrib-a8d6882144e76f384022fe7d2b4ee13ad876317a.tar.gz
convert-variable-renames: Fix output string
Signed-off-by: Saul Wold <saul.wold@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/contrib/convert-variable-renames.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/contrib/convert-variable-renames.py b/scripts/contrib/convert-variable-renames.py
index ed012610db..856c001e11 100755
--- a/scripts/contrib/convert-variable-renames.py
+++ b/scripts/contrib/convert-variable-renames.py
@@ -79,7 +79,7 @@ def processfile(fn):
# Find removed names
for removed_name in removed_list:
if removed_name in line:
- print("%s needs further work at line %s because has been deprecated" % (fn, lineno, remove_name))
+ print("%s needs further work at line %s because %s has been deprecated" % (fn, lineno, removed_name))
for check_word in context_check_list:
if re.search(check_word, line, re.IGNORECASE):
print("%s needs further work at line %s since it contains %s"% (fn, lineno, check_word))