Compare commits

..

No commits in common. "2c7895561bce6dcdb7a64f82689e9cbbd9acee82" and "a04b119ce533eec41927490e38d450769f9637be" have entirely different histories.

3 changed files with 1 additions and 18 deletions

View File

@ -1,8 +0,0 @@
.venv/
__pycache__/
.env
.git
.gitignore
deploy.sh
Dockerfile
env

5
.gitignore vendored
View File

@ -1,5 +0,0 @@
.venv/
__pycache__/
.env
deploy.sh
env

View File

@ -60,14 +60,10 @@ class Entry(object):
#print(kwargs["links"][0].get("rpath"))
if data.select('Series')[0].text in kwargs["links"][0].get("rpath"):
releasedate=data.select('Year')[0].text+"-"+data.select('Month')[0].text.zfill(2)+"-"+data.select('Day')[0].text.zfill(2)
try:
self.title = "#"+data.select('Number')[0].text.zfill(2) + ": " + data.select('Title')[0].text + " (" + releasedate + ")"
except:
self.title = "#"+data.select('Number')[0].text.zfill(2) + " (" + releasedate + ")"
self.title = "#"+data.select('Number')[0].text.zfill(2) + ": " + data.select('Title')[0].text + " (" + releasedate + ")"
#print(self.title)
else:
self.title = kwargs["title"]
else:
self.title = kwargs["title"]
#self.title = data.select('Title')[0].text