diff options
Diffstat (limited to 'tools/generate_support_bundle.py')
| -rwxr-xr-x | tools/generate_support_bundle.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/generate_support_bundle.py b/tools/generate_support_bundle.py index 56b2872d1e..c6b876f5b8 100755 --- a/tools/generate_support_bundle.py +++ b/tools/generate_support_bundle.py @@ -29,7 +29,7 @@ import tempfile def open_with_backup(path): if os.path.exists(path): print("Making backup of " + path) - subprocess.check_call("mv {0} {0}.prev".format(path)) + subprocess.check_call("mv {0} {0}.prev".format(path), shell=True) return open(path, "w") def main(): |
