Skip to content

Commit

Permalink
cli: use the right default for two options
Browse files Browse the repository at this point in the history
  • Loading branch information
jacquerie committed Jul 17, 2018
1 parent 2153609 commit e1cedbe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions github_file/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ def update(filename):
if parser.has_option('core', 'private'):
private = parser.getboolean('core', 'private')

has_issues = False
has_issues = True
if parser.has_option('features', 'has_issues'):
has_issues = parser.getboolean('features', 'has_issues')
has_wiki = False
has_wiki = True
if parser.has_option('features', 'has_wiki'):
has_wiki = parser.getboolean('features', 'has_wiki')

Expand Down

0 comments on commit e1cedbe

Please sign in to comment.