diff options
author | 2023-08-03 16:33:41 +0600 | |
---|---|---|
committer | 2023-08-03 16:33:41 +0600 | |
commit | 70faa8e9a0ff3cba74b4f753e257d56b768fcbd2 (patch) | |
tree | 3a49460715f7319d100e0cc9c1a278758500c7c8 /debian/patches/lock-is-held-typo.patch | |
download | aptdaemon-70faa8e9a0ff3cba74b4f753e257d56b768fcbd2.tar.gz aptdaemon-70faa8e9a0ff3cba74b4f753e257d56b768fcbd2.zip |
Import Upstream version 1.1.1+bzr982
Diffstat (limited to 'debian/patches/lock-is-held-typo.patch')
-rw-r--r-- | debian/patches/lock-is-held-typo.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/debian/patches/lock-is-held-typo.patch b/debian/patches/lock-is-held-typo.patch new file mode 100644 index 0000000..5220b7d --- /dev/null +++ b/debian/patches/lock-is-held-typo.patch @@ -0,0 +1,15 @@ +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 |