1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-07 06:30:50 +00:00

keep dotpath as a relative path when importing

This commit is contained in:
deadc0de6
2017-04-18 12:32:58 +02:00
parent 2c052f8b97
commit d25ad19ec2
8 changed files with 43 additions and 24 deletions

View File

@@ -60,9 +60,9 @@ def create_dir(path):
return path
def load_config(confpath, dotpath, profile):
def load_config(confpath, profile):
'''Load the config file from path'''
conf = Cfg(confpath, dotpath)
conf = Cfg(confpath)
opts = conf.get_configs()
opts['dry'] = False
opts['profile'] = profile