removed .nvim; added log statements

This commit is contained in:
Marcel Gansfusz
2025-10-30 15:31:00 +01:00
parent 5bc24a32d5
commit 6bd75bf93f
3 changed files with 2 additions and 2 deletions

1
.gitignore vendored
View File

@@ -8,3 +8,4 @@ app/__pycache__/
mariadb/* mariadb/*
unizeug unizeug
.mypy_cache .mypy_cache
.nvim

View File

@@ -1,2 +0,0 @@
# remote_path="/srv/http/"
# remote_path="dev@10.0.0.25:/var/www/html/"

View File

@@ -735,6 +735,7 @@ def make_savepath(
ftype: str, ftype: str,
) -> os.PathLike: ) -> os.PathLike:
"""Generates the path, the file is saved to after the upload process is finished. It creates all nessecery directories.""" """Generates the path, the file is saved to after the upload process is finished. It creates all nessecery directories."""
info(f"Started to make Savepath for {fname} in {lva} for prof {prof}.")
lv = get_lvpath(lva) lv = get_lvpath(lva)
lvpath = Path(lv[1]) lvpath = Path(lv[1])
pf = get_profpath(prof, lv[0]) pf = get_profpath(prof, lv[0])