Skip to content

Commit

Permalink
-LibrePhotos#310: Correct Finalize args (needs to be iterable)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakob Malm committed Sep 10, 2021
1 parent 42602e4 commit 008c107
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/directory_watcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ def initialize_scan_process(*args, **kwargs):
def terminate(et):
et.terminate()

Finalize(et, terminate, args=(et), exitpriority=16)
Finalize(et, terminate, args=(et,), exitpriority=16)


@job
Expand Down

0 comments on commit 008c107

Please sign in to comment.