mirror of
https://gitee.com/xiaohuolufeihua/bizhang_-obav.git
synced 2026-05-21 01:12:11 +00:00
Fix incorrect default for parser
This commit is contained in:
committed by
Lorenz Meier
parent
a904f78fad
commit
564b29c0f8
@@ -59,7 +59,7 @@ class Parameter(object):
|
||||
self.default = default
|
||||
self.volatile = "false"
|
||||
self.category = ""
|
||||
self.boolean = "false"
|
||||
self.boolean = False
|
||||
|
||||
def GetName(self):
|
||||
return self.name
|
||||
@@ -107,7 +107,7 @@ class Parameter(object):
|
||||
"""
|
||||
Set boolean flag
|
||||
"""
|
||||
self.boolean = "true"
|
||||
self.boolean = True
|
||||
|
||||
def SetCategory(self, category):
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user