From 5cf0cf58a13131736bde68eed6af168ca9308ecf Mon Sep 17 00:00:00 2001 From: Chaz Date: Wed, 22 Sep 2010 02:57:51 -0400 Subject: [PATCH] Updated saveActions default to False --- pyfpdb/Configuration.py | 4 ++-- pyfpdb/HUD_config.test.xml | 2 +- pyfpdb/HUD_config.xml.example | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) mode change 100755 => 100644 pyfpdb/Configuration.py diff --git a/pyfpdb/Configuration.py b/pyfpdb/Configuration.py old mode 100755 new mode 100644 index 91a16cca..51d04b57 --- a/pyfpdb/Configuration.py +++ b/pyfpdb/Configuration.py @@ -484,7 +484,7 @@ class Import: self.callFpdbHud = node.getAttribute("callFpdbHud") self.hhArchiveBase = node.getAttribute("hhArchiveBase") self.hhBulkPath = node.getAttribute("hhBulkPath") - self.saveActions = string_to_bool(node.getAttribute("saveActions"), default=True) + self.saveActions = string_to_bool(node.getAttribute("saveActions"), default=False) self.fastStoreHudCache = string_to_bool(node.getAttribute("fastStoreHudCache"), default=False) self.saveStarsHH = string_to_bool(node.getAttribute("saveStarsHH"), default=False) @@ -1263,7 +1263,7 @@ class Config: except: imp['hhBulkPath'] = "" try: imp['saveActions'] = self.imp.saveActions - except: imp['saveActions'] = True + except: imp['saveActions'] = False try: imp['saveStarsHH'] = self.imp.saveStarsHH except: imp['saveStarsHH'] = False diff --git a/pyfpdb/HUD_config.test.xml b/pyfpdb/HUD_config.test.xml index 94aefa82..5ec16a56 100644 --- a/pyfpdb/HUD_config.test.xml +++ b/pyfpdb/HUD_config.test.xml @@ -2,7 +2,7 @@ - +