X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/60c3eb6ecbe5c000aa4d24344e85d2ed00d8983c..bda5443f87666bebd8594f6c2586677e218ae18b:/src/catalogue/utils.py

diff --git a/src/catalogue/utils.py b/src/catalogue/utils.py
index 60a56714c..2f3b94964 100644
--- a/src/catalogue/utils.py
+++ b/src/catalogue/utils.py
@@ -85,7 +85,7 @@ class LockFile(object):
         try:
             unlink(self.lockname)
         except OSError as oe:
-            if oe.errno != EEXIST:
+            if oe.errno != ENOENT:
                 raise oe
         self.lock.close()