Skip to content

Commit

Permalink
Merge pull request #5 from kenyon/patch-1
Browse files Browse the repository at this point in the history
banner.py: make default bool values strings
  • Loading branch information
redhatrises authored Jan 10, 2022
2 parents 85f8787 + 7630be3 commit 2e2b553
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions classification_banner/banner.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,14 +247,14 @@ def configure(self):
defaults["font"] = "liberation-sans"
defaults["size"] = "small"
defaults["weight"] = "bold"
defaults["show_top"] = True
defaults["show_bottom"] = True
defaults["show_top"] = "True"
defaults["show_bottom"] = "True"
defaults["horizontal_resolution"] = 0
defaults["vertical_resolution"] = 0
defaults["sys_info"] = False
defaults["sys_info"] = "False"
defaults["opacity"] = 0.75
defaults["esc"] = True
defaults["spanning"] = False
defaults["esc"] = "True"
defaults["spanning"] = "False"

conf = SafeConfigParser()
conf.read(CONF_FILE)
Expand Down

0 comments on commit 2e2b553

Please sign in to comment.