Skip to content

Commit c028c2d

Browse files
committed
Fix status folder
1 parent de5263d commit c028c2d

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

scan_to_paperless/status.py

+2-5
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ def set_current_folder(self, name: Path | None) -> None:
243243

244244
def set_status(
245245
self,
246-
name: Path,
246+
path: Path,
247247
nb_images: int,
248248
status: str,
249249
details: str = "",
@@ -252,10 +252,7 @@ def set_status(
252252
) -> None:
253253
"""Set the status of a folder."""
254254
# Config file name
255-
if name.name == "config.yaml":
256-
name = name.parent
257-
if len(name.parents) >= 1:
258-
name = name.parents[-2]
255+
name = path.parent.name if path.name == "config.yaml" else path.name
259256
if nb_images <= 0 and name in self._status:
260257
nb_images = self._status[name].nb_images
261258
self._status[Path(name)] = _Folder(nb_images, html.escape(status), details, step)

0 commit comments

Comments
 (0)