Skip to content

Commit

Permalink
Merge pull request #93 from oplier/master
Browse files Browse the repository at this point in the history
Fix issue #91 DEBUG in common.py dealt as str after loaded from config file
  • Loading branch information
charleso authored May 9, 2019
2 parents 9db2037 + 476c0c0 commit 3597fb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion git_cc/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ def path(path, args='-m'):
cfg = GitConfigParser(CURRENT_BRANCH)
cfg.read()
CC_DIR = path(cfg.get(CFG_CC))
DEBUG = cfg.getCore('debug', True)
DEBUG = str(cfg.getCore('debug', True)) == str(True)
CC_TAG = CURRENT_BRANCH + '_cc'
CI_TAG = CURRENT_BRANCH + '_ci'
users = get_users_module(cfg.getUsersModulePath())

0 comments on commit 3597fb1

Please sign in to comment.