summaryrefslogtreecommitdiffstats
path: root/cfgv.py
diff options
context:
space:
mode:
Diffstat (limited to 'cfgv.py')
-rw-r--r--cfgv.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cfgv.py b/cfgv.py
index f0b9eff..2a9ceab 100644
--- a/cfgv.py
+++ b/cfgv.py
@@ -392,8 +392,8 @@ def load_from_filename(
exc_tp=ValidationError,
):
with reraise_as(exc_tp):
- if not os.path.exists(filename):
- raise ValidationError(f'{filename} does not exist')
+ if not os.path.isfile(filename):
+ raise ValidationError(f'{filename} is not a file')
with validate_context(f'File {filename}'):
try: