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 9cbebf2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions git_cc/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,7 @@ def path(path, args='-m'):
cfg.read()
CC_DIR = path(cfg.get(CFG_CC))
DEBUG = cfg.getCore('debug', True)
DEBUG = DEBUG == str(True)
CC_TAG = CURRENT_BRANCH + '_cc'
CI_TAG = CURRENT_BRANCH + '_ci'
users = get_users_module(cfg.getUsersModulePath())

0 comments on commit 9cbebf2

Please sign in to comment.