fixed a few typos

This commit is contained in:
Patrick McDonagh
2016-04-20 11:48:32 -05:00
parent 4c8ff3f4a5
commit 5a7d40088c
2 changed files with 5 additions and 5 deletions

View File

@@ -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:

View File

@@ -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'