Fixup flake8

This commit is contained in:
Ruben De Smet 2020-07-22 18:09:33 +02:00
parent e7597916a2
commit 99cd7e2de4

View file

@ -568,7 +568,7 @@ def reflink(path, dest, replace=False, fallback=False):
try:
pyreflink.reflink(path, dest)
except (NotImplementedError, pyreflink.ReflinkImpossibleError) as exc:
except (NotImplementedError, pyreflink.ReflinkImpossibleError):
if fallback:
copy(path, dest, replace)
else: