mirror of
https://github.com/ejwa/gitinspector.git
synced 2024-11-16 00:28:25 +01:00
Removed dangling semicolon from the blame module.
This commit is contained in:
parent
8a386225fd
commit
fe71a2923a
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ class BlameThread(threading.Thread):
|
|||
else:
|
||||
self.blames[(author, self.filename)].comments += 1
|
||||
elif comment.has_comment_begining(self.extension, content) and not comment.has_comment_end(self.extension, content):
|
||||
is_inside_comment = True;
|
||||
is_inside_comment = True
|
||||
|
||||
self.blames[(author, self.filename)].rows += 1
|
||||
__blame_lock__.release() # ...to here.
|
||||
|
|
Loading…
Reference in a new issue