From 0e2f6bf4aba56ffc913c9373dd1be3521dae2792 Mon Sep 17 00:00:00 2001 From: Worros Date: Fri, 12 Dec 2008 20:25:26 +0900 Subject: [PATCH] Fix default value when run from RegressionTest --- pyfpdb/fpdb_import.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pyfpdb/fpdb_import.py b/pyfpdb/fpdb_import.py index 2e88899c..aabcbdd6 100644 --- a/pyfpdb/fpdb_import.py +++ b/pyfpdb/fpdb_import.py @@ -59,7 +59,11 @@ class Importer: #Set defaults self.callHud = self.config.get_import_parameters().get("callFpdbHud") if not self.settings.has_key('minPrint'): + #TODO: Is this value in the xml file? self.settings['minPrint'] = 30 + if not self.settings.has_key('handCount'): + #TODO: Is this value in the xml file? + self.settings['handCount'] = 0 self.dbConnect() # XXX: Why is this here, when fpdb_db.connect() already does the