diff options
-rw-r--r-- | dotfiles/utils.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/dotfiles/utils.py b/dotfiles/utils.py index 15a82d8..28f2212 100644 --- a/dotfiles/utils.py +++ b/dotfiles/utils.py @@ -19,5 +19,4 @@ def is_link_to(path, target): def normalize(path): return os.path.normcase(os.path.normpath(path)) return islink(path) and \ - normalize(realpath(path)) == normalize(target) - + normalize(realpath(path)) == normalize(realpath(target)) |