From 417f9a5101ace54032c2354265ac66f28f04db8a Mon Sep 17 00:00:00 2001 From: Joshua Harlow Date: Fri, 5 Jun 2015 17:32:09 -0700 Subject: [PATCH] Ensure bugs.debian.org link starts with http --- fasteners/process_lock.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fasteners/process_lock.py b/fasteners/process_lock.py index 4588004..d6ce35c 100644 --- a/fasteners/process_lock.py +++ b/fasteners/process_lock.py @@ -57,8 +57,8 @@ class _InterProcessLock(object): """An interprocess locking implementation. This is a lock implementation which allows multiple locks, working around - issues like bugs.debian.org/cgi-bin/bugreport.cgi?bug=632857 and does - not require any cleanup. Since the lock is always held on a file + issues like http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=632857 and + does not require any cleanup. Since the lock is always held on a file descriptor rather than outside of the process, the lock gets dropped automatically if the process crashes, even if ``__exit__`` is not executed.