summaryrefslogtreecommitdiffstats
path: root/cfgv.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2021-07-17 07:06:10 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2021-07-17 07:06:10 +0000
commit850d2f95de58c61926e7aa9eed5c26d3954f6095 (patch)
treebe44ba77f197e04a5e813c1624952b7b38c6f186 /cfgv.py
parentAdding upstream version 3.2.0. (diff)
downloadcfgv-upstream/3.3.0.tar.xz
cfgv-upstream/3.3.0.zip
Adding upstream version 3.3.0.upstream/3.3.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-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: