Fixed some data-type bugs in the Import class -- essentialy the same commit as 530a21cb9f65f83f8b09ef08f6415c8bd256fccc in the chaz branch of my repo
This commit is contained in:
parent
91d791a3ac
commit
3c2fdaf53e
|
@ -490,14 +490,14 @@ class Import:
|
|||
def __init__(self, node):
|
||||
self.node = node
|
||||
self.interval = node.getAttribute("interval")
|
||||
self.callFpdbHud = node.getAttribute("callFpdbHud")
|
||||
self.sessionTimeout = node.getAttribute("sessionTimeout")
|
||||
self.ResultsDirectory = node.getAttribute("ResultsDirectory")
|
||||
self.hhBulkPath = node.getAttribute("hhBulkPath")
|
||||
self.saveActions = string_to_bool(node.getAttribute("saveActions"), default=False)
|
||||
self.cacheSessions = string_to_bool(node.getAttribute("cacheSessions"), default=False)
|
||||
self.sessionTimeout = string_to_bool(node.getAttribute("sessionTimeout"), default=30)
|
||||
self.saveActions = string_to_bool(node.getAttribute("saveActions") , default=False)
|
||||
self.cacheSessions = string_to_bool(node.getAttribute("cacheSessions") , default=False)
|
||||
self.callFpdbHud = string_to_bool(node.getAttribute("callFpdbHud") , default=False)
|
||||
self.fastStoreHudCache = string_to_bool(node.getAttribute("fastStoreHudCache"), default=False)
|
||||
self.saveStarsHH = string_to_bool(node.getAttribute("saveStarsHH"), default=False)
|
||||
self.saveStarsHH = string_to_bool(node.getAttribute("saveStarsHH") , default=False)
|
||||
|
||||
def __str__(self):
|
||||
return " interval = %s\n callFpdbHud = %s\n saveActions = %s\n fastStoreHudCache = %s\nResultsDirectory = %s" \
|
||||
|
|
Loading…
Reference in New Issue
Block a user