mirror of
https://github.com/ejwa/gitinspector.git
synced 2024-11-16 00:28:25 +01:00
Only include valid extensions in blame output (#95).
This commit is contained in:
parent
6e0365e8ba
commit
e543eeaf58
1 changed files with 1 additions and 1 deletions
|
@ -137,7 +137,7 @@ class Blame(object):
|
|||
row = row.encode("latin-1", "replace")
|
||||
row = row.decode("utf-8", "replace").strip("\"").strip("'").strip()
|
||||
|
||||
if FileDiff.get_extension(row) in extensions.get_located() and not \
|
||||
if FileDiff.get_extension(row) in extensions.get_located() and FileDiff.is_valid_extension(row) and not \
|
||||
filtering.set_filtered(FileDiff.get_filename(row)):
|
||||
blame_command = filter(None, ["git", "blame", "--line-porcelain", "-w"] + \
|
||||
(["-C", "-C", "-M"] if hard else []) +
|
||||
|
|
Loading…
Reference in a new issue