Ensure bugs.debian.org link starts with http

This commit is contained in:
Joshua Harlow
2015-06-05 17:32:09 -07:00
parent 65abff91c2
commit 417f9a5101

View File

@@ -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.