aboutsummaryrefslogtreecommitdiff
path: root/debian/patches/lock-is-held-typo.patch
diff options
context:
space:
mode:
Diffstat (limited to 'debian/patches/lock-is-held-typo.patch')
-rw-r--r--debian/patches/lock-is-held-typo.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/debian/patches/lock-is-held-typo.patch b/debian/patches/lock-is-held-typo.patch
deleted file mode 100644
index 5220b7d..0000000
--- a/debian/patches/lock-is-held-typo.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-Description: Fix typo hold vs held.
-Author: Julian Andres Klode <juliank@ubuntu.com>
-Last-Update: 2019-06-21
-
---- aptdaemon-1.1.1+bzr982.orig/aptdaemon/lock.py
-+++ aptdaemon-1.1.1+bzr982/aptdaemon/lock.py
-@@ -45,7 +45,7 @@ class LockFailedError(Exception):
- """
- msg = "Could not acquire lock on %s." % flock
- if process:
-- msg += " The lock is hold by %s." % process
-+ msg += " The lock is held by %s." % process
- Exception.__init__(self, msg)
- self.flock = flock
- self.process = process