Skip to content

Commit

Permalink
Fix status path
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrunner committed Jun 7, 2023
1 parent a3dfdeb commit c03b657
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scan_to_paperless/status.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def __init__(self, no_write: bool = False) -> None:
"""Construct."""

self.no_write = no_write
self._file = os.path.join(os.environ.get("SCAN_SOURCE_FOLDER", "status.html"))
self._file = os.path.join(os.environ.get("SCAN_SOURCE_FOLDER", "/source"), "status.html")
self._status: Dict[str, _Folder] = {}
self._global_status = "Starting..."
self._start_time = datetime.datetime.utcnow().replace(microsecond=0)
Expand Down

0 comments on commit c03b657

Please # to comment.