From 9c751f97c5cbb5e2bb6499889f1bf34bab0bbd80 Mon Sep 17 00:00:00 2001 From: giomba Date: Sat, 3 Nov 2018 16:39:02 +0100 Subject: [PATCH] Added version details --- glob.py | 2 ++ tcparser.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/glob.py b/glob.py index 52232ca..4c08822 100644 --- a/glob.py +++ b/glob.py @@ -3,3 +3,5 @@ import configparser # Read configuration files (latest files in list override previous settings) conf = configparser.ConfigParser() conf.read(['conf/conf.ini', 'conf/conf.custom.ini']) + +version = '1811.alpha' diff --git a/tcparser.py b/tcparser.py index d77c89e..0b7cfff 100644 --- a/tcparser.py +++ b/tcparser.py @@ -66,7 +66,7 @@ def getHTML(library): table = ET.Element('table') h1 = ET.Element('h1') - title.text = h1.text = 'TPDF - Tellico Parser anD Finder' + title.text = h1.text = 'TPDF - Tellico Parser anD Finder ' + glob.version tree._setroot(html) html.append(head)