X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/60c3eb6ecbe5c000aa4d24344e85d2ed00d8983c..24f677a3979ba3f1bdfe420c03ad5e3f8b0398c2:/src/catalogue/utils.py?ds=sidebyside

diff --git a/src/catalogue/utils.py b/src/catalogue/utils.py
index 60a56714c..380ec8ecd 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()
 
@@ -354,3 +354,8 @@ def gallery_path(slug):
 
 def gallery_url(slug):
     return '%s%s%s/' % (settings.MEDIA_URL, settings.IMAGE_DIR, slug)
+
+
+def get_mp3_length(path):
+    from mutagen.mp3 import MP3
+    return int(MP3(path).info.length)