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)