more file name changes so I can tab in terminals

This commit is contained in:
JesseBot 2019-01-11 10:59:13 +00:00
parent 1f9b7fd440
commit 3779355d43
2 changed files with 3 additions and 3 deletions

View file

@ -28,7 +28,7 @@ def add_new_band(band):
"""
now = str(datetime.datetime.now())
conn = sqlite3.connect('bands.db')
conn = sqlite3.connect('my-next-band.db')
c = conn.cursor()
# Insert a row of data
@ -55,7 +55,7 @@ def get_all_bands():
grabs all the bands from sqlite3 db
- returns a list of tuples with 2 strings of band_name, and time_stamp
"""
conn = sqlite3.connect('bands.db')
conn = sqlite3.connect('my-next-band.db')
c = conn.cursor()

View file

@ -25,7 +25,7 @@ def main ():
now = str(datetime.datetime.now())
conn = sqlite3.connect('bands.db')
conn = sqlite3.connect('my-next-band.db')
c = conn.cursor()