From c63f588b82cceb55f1016f938bfbf9644444f60a Mon Sep 17 00:00:00 2001 From: Daniel Messer Date: Tue, 8 Dec 2020 13:35:03 -0600 Subject: [PATCH] Updated version number. --- Windows/pecos.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Windows/pecos.py b/Windows/pecos.py index e869c5a..f888a31 100644 --- a/Windows/pecos.py +++ b/Windows/pecos.py @@ -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()