summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--scripts/lib/devtool/utilcmds.py2
-rw-r--r--scripts/lib/recipetool/newappend.py2
-rw-r--r--scripts/lib/scriptutils.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/scripts/lib/devtool/utilcmds.py b/scripts/lib/devtool/utilcmds.py
index 0437e6417c..938d88afc0 100644
--- a/scripts/lib/devtool/utilcmds.py
+++ b/scripts/lib/devtool/utilcmds.py
@@ -49,7 +49,7 @@ def edit_recipe(args, config, basepath, workspace):
49 raise DevtoolError("Recipe file for %s is not under the workspace" % 49 raise DevtoolError("Recipe file for %s is not under the workspace" %
50 args.recipename) 50 args.recipename)
51 51
52 return scriptutils.run_editor(recipefile) 52 return scriptutils.run_editor(recipefile, logger)
53 53
54 54
55def configure_help(args, config, basepath, workspace): 55def configure_help(args, config, basepath, workspace):
diff --git a/scripts/lib/recipetool/newappend.py b/scripts/lib/recipetool/newappend.py
index 0b63759d8c..decce83fac 100644
--- a/scripts/lib/recipetool/newappend.py
+++ b/scripts/lib/recipetool/newappend.py
@@ -74,7 +74,7 @@ def newappend(args):
74 return 1 74 return 1
75 75
76 if args.edit: 76 if args.edit:
77 return scriptutils.run_editor([append_path, recipe_path]) 77 return scriptutils.run_editor([append_path, recipe_path], logger)
78 else: 78 else:
79 print(append_path) 79 print(append_path)
80 80
diff --git a/scripts/lib/scriptutils.py b/scripts/lib/scriptutils.py
index b6217dc059..97854385d5 100644
--- a/scripts/lib/scriptutils.py
+++ b/scripts/lib/scriptutils.py
@@ -205,7 +205,7 @@ def fetch_url(tinfoil, srcuri, srcrev, destdir, logger, preserve_tmp=False):
205 return checksums, tmpdir 205 return checksums, tmpdir
206 206
207 207
208def run_editor(fn): 208def run_editor(fn, logger=None):
209 if isinstance(fn, str): 209 if isinstance(fn, str):
210 params = '"%s"' % fn 210 params = '"%s"' % fn
211 else: 211 else: