1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-04 15:39:43 +00:00
This commit is contained in:
deadc0de6
2019-05-31 20:20:25 +02:00
parent 6f31432f22
commit 806b4690b2
3 changed files with 4 additions and 4 deletions

View File

@@ -13,7 +13,7 @@ from unittest import TestCase
import yaml
from dotdrop.options import Options, ENV_NODEBUG
from dotdrop.options import Options
from dotdrop.linktypes import LinkTypes
from dotdrop.utils import strip_home
@@ -144,7 +144,7 @@ def load_options(confpath, profile):
args = _fake_args()
args['--cfg'] = confpath
args['--profile'] = profile
args['--debug'] = True
args['--verbose'] = True
# and get the options
o = Options(args=args)
o.profile = profile
@@ -154,8 +154,6 @@ def load_options(confpath, profile):
o.import_link = LinkTypes.NOLINK
o.install_showdiff = True
o.debug = True
if ENV_NODEBUG in os.environ:
o.debug = False
o.compare_dopts = ''
o.variables = {}
return o