From 5a7d40088c4a931e9d91ca2718bd4be4ccae5c63 Mon Sep 17 00:00:00 2001 From: Patrick McDonagh Date: Wed, 20 Apr 2016 11:48:32 -0500 Subject: [PATCH] fixed a few typos --- pickle_mysql_config.py | 8 ++++---- tagserver_SQLite.py | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pickle_mysql_config.py b/pickle_mysql_config.py index 1948d0a..ea19c5f 100644 --- a/pickle_mysql_config.py +++ b/pickle_mysql_config.py @@ -1,10 +1,10 @@ import pickle mysql_cfg = { - 'host':'127.0.0.1', - 'user':'website', - 'password':'henrypump', - 'database':'poconsole' + 'host': '127.0.0.1', + 'user': 'website', + 'password': 'henrypump', + 'database': 'poconsole' } with open('mysql_cfg.pickle', 'wb') as pickleconfig: diff --git a/tagserver_SQLite.py b/tagserver_SQLite.py index d9ace51..264fa97 100644 --- a/tagserver_SQLite.py +++ b/tagserver_SQLite.py @@ -66,7 +66,7 @@ def main(): configProperties['save_all'] = False else: configProperties['save_all'] = "test" - print("FYI, value for save_all is {0}".format(configProperties['save_all']))'save_all'])) + 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 'test'") configProperties['save_all'] = 'test'