mirror of
https://github.com/ejwa/gitinspector.git
synced 2024-11-16 00:28:25 +01:00
The "--since" flag is now also passed to the blame module.
This commit is contained in:
parent
35214550f3
commit
028469080f
1 changed files with 1 additions and 1 deletions
2
blame.py
2
blame.py
|
@ -97,7 +97,7 @@ class Blame:
|
|||
if FileDiff.is_valid_extension(row) and not filtering.set_filtered(FileDiff.get_filename(row)):
|
||||
if not missing.add(row.strip()):
|
||||
blame_string = "git blame -w {0} ".format("-C -C -M" if hard else "") + \
|
||||
interval.get_ref() + " -- \"" + row.strip() + "\""
|
||||
interval.get_since() + interval.get_ref() + " -- \"" + row.strip() + "\""
|
||||
thread = BlameThread(blame_string, FileDiff.get_extension(row), self.blames, row.strip())
|
||||
thread.daemon = True
|
||||
thread.start()
|
||||
|
|
Loading…
Reference in a new issue