Skip to content

Commit

Permalink
Merge pull request #63 from Ignoble61/master
Browse files Browse the repository at this point in the history
Fix - Just Select methods not parsed to python booleans
  • Loading branch information
BobCratchett committed Sep 5, 2015
2 parents b5f3e8e + 02075d7 commit 019fe2c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions default.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,14 @@ def _parse_argv( self ):
self.LIST = params.get( "skinList", None )
self.CUSTOM = params.get( "custom", "False" )
self.NONE = params.get( "showNone", "False" )
if self.CUSTOM == "True" or self.CUSTOM == "true":
self.CUSTOM = True
else:
self.CUSTOM = False
if self.NONE == "True" or self.NONE == "true":
self.NONE = True
else:
self.NONE = False

self.NOLABELS = params.get( "nolabels", "false" ).lower()
self.OPTIONS = params.get( "options", "" ).split( "|" )
Expand Down

0 comments on commit 019fe2c

Please sign in to comment.