Updated version number.

This commit is contained in:
2020-12-08 13:35:03 -06:00
parent 4b1e10bb88
commit c63f588b82

View File

@ -83,7 +83,7 @@ class Toplevel1:
top.minsize(1, 1)
top.maxsize(1905, 1050)
top.resizable(0, 0)
top.title("PECOS - Polaris Emergency Check Out System 1.0b (Windows)")
top.title("PECOS - Polaris Emergency Check Out System 1.3b (Windows)")
# --- CHECKOUT ITEM AND UPDATE DATABASE ---
def CheckOutItem(event=None):
@ -211,7 +211,7 @@ class Toplevel1:
os.makedirs(PatronBackup) # Recreate the backup patron folder
os.makedirs(ItemBackup) # Recreate the backup item folder
shutil.copy("emptybase.db", "checkouts.db") # Copy over an empty database
# Next two lines commented out in Windows version - the connection commands work on macOS
#conn = sqlite3.connect('checkouts.db') # Restablish connection to the database
#c = conn.cursor()