summaryrefslogtreecommitdiff
path: root/share/python/lib/runcmd.py
diff options
context:
space:
mode:
Diffstat (limited to 'share/python/lib/runcmd.py')
-rw-r--r--share/python/lib/runcmd.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/share/python/lib/runcmd.py b/share/python/lib/runcmd.py
index da6c3fd..c4a6a12 100644
--- a/share/python/lib/runcmd.py
+++ b/share/python/lib/runcmd.py
@@ -93,10 +93,10 @@ def runcmd_helper_srcdir_path(ctx):
# Step: This creates a helper script.
-def runcmd_helper_script(ctx, filename=None):
+def runcmd_helper_script(ctx, script=None):
get_file = globals()["get_file"]
- with open(filename, "wb") as f:
- f.write(get_file(filename))
+ with open(script, "wb") as f:
+ f.write(get_file(script))
#