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'