diff options
Diffstat (limited to 'Code/backup_files.py')
-rw-r--r-- | Code/backup_files.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Code/backup_files.py b/Code/backup_files.py index 39a0d30..c7ee4f4 100644 --- a/Code/backup_files.py +++ b/Code/backup_files.py @@ -38,7 +38,7 @@ def disk_has_enough_space(): def copy_and_backup_file(src_file, dest_dir): - disk_has_enough_space() # make sure we have enough space firs.t + disk_has_enough_space() # make sure we have enough space first if not os.path.exists(src_file): sys.exit() make_paths(dest_dir) # if dest_dir does not exist, create it. |