From 81e3f5d82ca24c64b1438c2bcfd1a0dec50b7a6c Mon Sep 17 00:00:00 2001 From: Adam Waldenberg Date: Mon, 21 May 2012 15:43:51 +0200 Subject: [PATCH] The ctrl-c signal can now be sent when the blame analysis is running. Fixed by just enabling the daemon property on the blame threads. --- blame.py | 1 + 1 file changed, 1 insertion(+) diff --git a/blame.py b/blame.py index 797ff82..090f009 100644 --- a/blame.py +++ b/blame.py @@ -82,6 +82,7 @@ class Blame: if not missing.add(row.strip()): blame_string = "git blame -w {0} \"".format("-C -C -M" if hard else "") + row.strip() + "\"" thread = BlameThread(blame_string, FileDiff.get_extension(row), self.blames) + thread.daemon = True thread.start() if hard: