From 6fdc5133868c3dc92d7eb816e292aa61148ce7ad Mon Sep 17 00:00:00 2001 From: Patrick McDonagh Date: Fri, 15 Apr 2016 17:35:14 -0500 Subject: [PATCH] Read was defaulting to False --- python/tagserver_MySQL.py | 4 ++-- python/tagserver_SQLite.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/python/tagserver_MySQL.py b/python/tagserver_MySQL.py index 5791425..cf4fe5f 100644 --- a/python/tagserver_MySQL.py +++ b/python/tagserver_MySQL.py @@ -73,8 +73,8 @@ def main(): configProperties['save_all'] = "test" print("FYI, value for save_all is {0}".format(configProperties['save_all'])) except KeyError: - print("FYI, there is no save_all value stored in the database, using False") - configProperties['save_all'] = False + print("FYI, there is no save_all value stored in the database, using 'test'") + configProperties['save_all'] = 'test' diff --git a/python/tagserver_SQLite.py b/python/tagserver_SQLite.py index 48bba26..80d0e3d 100644 --- a/python/tagserver_SQLite.py +++ b/python/tagserver_SQLite.py @@ -68,8 +68,8 @@ def main(): configProperties['save_all'] = "test" print("FYI, value for save_all is {0}".format(configProperties['save_all']))'save_all'])) except KeyError: - print("FYI, there is no save_all value stored in the database, using False") - configProperties['save_all'] = False + print("FYI, there is no save_all value stored in the database, using 'test'") + configProperties['save_all'] = 'test'