mirror of
https://github.com/arsenetar/dupeguru.git
synced 2026-03-12 19:41:38 +00:00
Use errno.EISDIR instead of hardcoding values
This commit is contained in:
@@ -14,6 +14,7 @@ import re
|
||||
import os
|
||||
import shutil
|
||||
|
||||
from errno import EISDIR
|
||||
from pathlib import Path
|
||||
from typing import Callable, List
|
||||
|
||||
@@ -75,10 +76,7 @@ def smart_copy(source_path: Path, dest_path: Path) -> None:
|
||||
try:
|
||||
_smart_move_or_copy(shutil.copy, source_path, dest_path)
|
||||
except OSError as e:
|
||||
if e.errno in {
|
||||
21,
|
||||
13,
|
||||
}: # it's a directory, code is 21 on OS X / Linux and 13 on Windows
|
||||
if e.errno == EISDIR: # it's a directory
|
||||
_smart_move_or_copy(shutil.copytree, source_path, dest_path)
|
||||
else:
|
||||
raise
|
||||
|
||||
Reference in New Issue
Block a user