From 6bc14838eb4af7d840b4c82f4e9fcacab6581f1a Mon Sep 17 00:00:00 2001 From: deadc0de6 Date: Sun, 17 Jun 2018 11:19:34 +0200 Subject: [PATCH] add debug info --- dotdrop/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotdrop/config.py b/dotdrop/config.py index 9b058d7..4777073 100644 --- a/dotdrop/config.py +++ b/dotdrop/config.py @@ -60,7 +60,7 @@ class Cfg: def __init__(self, cfgpath): if not os.path.exists(cfgpath): - raise ValueError('config file does not exist') + raise ValueError('config file does not exist: {}'.format(cfgpath)) # make sure to have an absolute path to config file self.cfgpath = os.path.abspath(cfgpath)