diff --git a/cista/droppy.py b/cista/droppy.py index 3271611..cb77d80 100644 --- a/cista/droppy.py +++ b/cista/droppy.py @@ -5,6 +5,7 @@ import msgspec def readconf() -> dict: p = Path.home() / ".droppy/config" # Hardcoded in Droppy + print("Reading Droppy config", p) cf = msgspec.json.decode((p / "config.json").read_bytes()) db = msgspec.json.decode((p / "db.json").read_bytes()) cf["path"] = p.parent / "files"