This commit is contained in:
2023-04-18 19:41:45 -04:00
parent b5c49bc46f
commit 86ed978098
3 changed files with 17 additions and 4 deletions

View File

@@ -10,6 +10,11 @@ currDay = currDay.strftime('%m-%d-%Y')
prevDay = datetime.now() + timedelta(days=-1)
prevDay = prevDay.strftime('%m-%d-%Y')
# Convert date to str format
def convDay(inDate):
outDate = inDate.strftime('%m-%d-%Y')
return outDate
with open('__version__','r') as file:
currVersion = file.read()