Skip to content

Commit

Permalink
Fix issue charleso#91 DEBUG in common.py dealt as str after loaded fr…
Browse files Browse the repository at this point in the history
…om config file
  • Loading branch information
oplier authored May 8, 2019
1 parent 9db2037 commit 476c0c0
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 476c0c0

Please sign in to comment.