summaryrefslogtreecommitdiff
path: root/lib/git/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/git/utils.py')
-rw-r--r--lib/git/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/git/utils.py b/lib/git/utils.py
index b5364c4c..5b061631 100644
--- a/lib/git/utils.py
+++ b/lib/git/utils.py
@@ -139,7 +139,7 @@ class LockFile(object):
raise AssertionError("The lock file at %s could not be read" % lock_file)
if pid != os.getpid():
- raise AssertionError("We claim to own the lock at %s, but it was not owned by our process: %i" % (lock_file, os.getpid()))
+ raise AssertionError("We claim to own the lock at %s, but it was not owned by our process %i, but by %i" % (lock_file, os.getpid(), pid))
return True