tell the user when the database is downloading
This commit is contained in:
parent
0f499f080a
commit
1e2f419243
1 changed files with 4 additions and 1 deletions
|
|
@ -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")
|
||||||
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue