diff options
author | JF Bastien <jfb@chromium.org> | 2016-01-17 15:55:12 -0800 |
---|---|---|
committer | JF Bastien <jfb@chromium.org> | 2016-01-17 15:55:12 -0800 |
commit | 705fe594cbabd272a99bfd626be00c2835c94141 (patch) | |
tree | a4f74972638f8d6d2d30d4d259eb39ca8ac6e0b3 | |
parent | 32228f3c5b9eec4c9ec8f575c3948efe7013c1d8 (diff) | |
download | binaryen-705fe594cbabd272a99bfd626be00c2835c94141.tar.gz binaryen-705fe594cbabd272a99bfd626be00c2835c94141.tar.bz2 binaryen-705fe594cbabd272a99bfd626be00c2835c94141.zip |
Fix 'remove' call.
-rwxr-xr-x | scripts/storage.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/storage.py b/scripts/storage.py index 09a777135..9cc697f5d 100755 --- a/scripts/storage.py +++ b/scripts/storage.py @@ -45,5 +45,5 @@ def download_tar(tar_pattern, directory, revision): # Remove any previous tarfiles. for older_tar in glob.glob(tar_path % '*'): if older_tar != revision_tar_path: - os.path.remove(older_tar) + os.remove(older_tar) return revision_tar_path |