summaryrefslogtreecommitdiff
path: root/scripts/storage.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/storage.py')
-rwxr-xr-xscripts/storage.py2
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