Add workdir/config as potential config file storage

This commit is contained in:
Oleksii Shevchuk 2017-03-10 19:27:19 +02:00
parent 8e60bf9726
commit fda4717041
1 changed files with 1 additions and 0 deletions

View File

@ -16,6 +16,7 @@ class PupyConfig(ConfigParser):
path.join(self.root, config+'.default'),
path.join(self.root, config),
path.join(self.user_root, config),
path.join('config', config),
config
]