diff options
author | Hui Lan <lanhui@zjnu.edu.cn> | 2020-02-06 17:37:57 +0800 |
---|---|---|
committer | Hui Lan <lanhui@zjnu.edu.cn> | 2020-02-06 17:37:57 +0800 |
commit | 97db795240795d947241ff30a8beafbd3aca93b8 (patch) | |
tree | 00d8de082d7c54f1554aa50c0204e6466f6f10d0 /Code/backup_files.py | |
parent | a93b28f0e147ae51c06254132c22e7460ad3d70a (diff) |
backup_files.py: fix misspelling
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. |