Removed dangling semicolon from the blame module.

This commit is contained in:
Adam Waldenberg 2013-06-17 07:49:53 +02:00
parent 8a386225fd
commit fe71a2923a
1 changed files with 1 additions and 1 deletions

View File

@ -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.