From bc6fe3fdaf90ced9e0c03cf9427c6e63598dcf1d Mon Sep 17 00:00:00 2001 From: Aaron Lichtman Date: Sun, 10 May 2020 02:41:44 -0500 Subject: [PATCH] Remove TODO --- shallow_backup/backup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/shallow_backup/backup.py b/shallow_backup/backup.py index f0ed5d86..eba93f67 100644 --- a/shallow_backup/backup.py +++ b/shallow_backup/backup.py @@ -74,7 +74,6 @@ def backup_configs(backup_path, skip=False): print("TARGET:", target) dest = os.path.join(backup_path, target) if os.path.isdir(path_to_backup): - # TODO: Symlink to speed things up copytree(path_to_backup, quote(dest), symlinks=True) elif os.path.isfile(path_to_backup): parent_dir = dest[:dest.rfind("/")]