From 0f764be26f3791c6de4063d7947b114aeb63c646 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 31 Jul 2022 10:27:33 +0530 Subject: [PATCH] ... --- src/calibre/utils/lock.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/utils/lock.py b/src/calibre/utils/lock.py index 30e71b1562..71ba23ffd2 100644 --- a/src/calibre/utils/lock.py +++ b/src/calibre/utils/lock.py @@ -203,7 +203,7 @@ class SingleInstance: def singleinstance(name): - ' Ensure that only a single process holding exists with the specified mutex key ' + ' Ensure that only a single process exists with the specified mutex key ' release_mutex = create_single_instance_mutex(name) if release_mutex is None: return False