1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-09 17:34:16 +00:00

dedicated importer class

This commit is contained in:
deadc0de6
2020-11-16 20:52:33 +01:00
parent 3dc6531870
commit d40d387b96
3 changed files with 218 additions and 126 deletions

View File

@@ -16,7 +16,7 @@ from dotdrop.linktypes import LinkTypes
from dotdrop.logger import Logger
from dotdrop.cfg_aggregator import CfgAggregator as Cfg
from dotdrop.action import Action
from dotdrop.utils import uniq_list, get_umask
from dotdrop.utils import uniq_list
from dotdrop.exceptions import YamlException
ENV_PROFILE = 'DOTDROP_PROFILE'
@@ -123,7 +123,6 @@ class Options(AttrMonitor):
self.log = Logger()
self.debug = self.args['--verbose'] or ENV_DEBUG in os.environ
self.dry = self.args['--dry']
self.umask = get_umask()
if ENV_NODEBUG in os.environ:
# force disabling debugs
self.debug = False