backup fix

This commit is contained in:
Rushabh Mehta 2011-07-27 13:52:08 +05:30
parent f157510541
commit 517149a796

View file

@ -137,7 +137,7 @@ def delete_temp_backups():
"""
file_list = os.listdir(backup_link_path)
for this_file in file_list:
this_file_path = backup_link_path + this_file
this_file_path = os.path.join(backup_link_path, this_file)
if is_file_old(this_file_path):
os.remove(this_file_path)