From 36762895092a3d276b5ceeda8d26a4f0e55aac65 Mon Sep 17 00:00:00 2001 From: Mike Date: Sun, 10 Nov 2019 01:54:03 -0500 Subject: [PATCH] Added version number to config, and title --- app/config.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/config.py b/app/config.py index b4200e7..117f774 100755 --- a/app/config.py +++ b/app/config.py @@ -3,6 +3,8 @@ class Config: def __init__(self): self.book_path = "books/" self.TITLE = "pyShelf E-Book Server" + self.VERSION = "0.1.0" + self.TITLE = self.TITLE + " ver" + self.VERSION self.book_shelf = "data/shelf.json" # self.catalogue_db = "data/catalogue.db" self.catalogue_db = "../frontend/db.sqlite3"