tell the user when the database is downloading

This commit is contained in:
Justus Kuhlmann 2025-11-27 15:27:41 +01:00
commit 1e2f419243
Signed by: jkuhl
GPG key ID: 00ED992DD79B85A6

View file

@ -20,7 +20,10 @@ def k2m(k):
def get_file(path, file): def get_file(path, file):
print("Loading data...") if file == "backlogger.db":
print("Downloading database...")
else:
print("Downloading data...")
dl.get(os.path.join(path, file), dataset=path) dl.get(os.path.join(path, file), dataset=path)
print("> downloaded file") print("> downloaded file")