Revert "print current version on startup" (#70)

This reverts commit 213ef57abe.
This commit is contained in:
nanos 2023-08-06 09:45:33 +01:00
parent 712d88cf0d
commit 253c7c4f2b
2 changed files with 1 additions and 13 deletions

View file

@ -12,7 +12,6 @@ import requests
import time
import argparse
import uuid
import git
import defusedxml.ElementTree as ET
argparser=argparse.ArgumentParser()
@ -1247,16 +1246,7 @@ def set_server_apis(server):
if __name__ == "__main__":
start = datetime.now()
repo = git.Repo(os.getcwd())
tag = next((tag for tag in repo.tags if tag.commit == repo.head.commit), None)
if(isinstance(tag, git.TagReference)) :
version = tag.name
else:
version = f"on commit {repo.head.commit.name_rev}"
log(f"Starting FediFetcher {version}")
log(f"Starting FediFetcher")
arguments = argparser.parse_args()

View file

@ -1,8 +1,6 @@
certifi==2022.12.7
charset-normalizer==3.0.1
docutils==0.19
gitdb==4.0.10
GitPython==3.1.31
idna==3.4
python-dateutil==2.8.2
requests==2.28.2