Nitzan Farhi

Results 2 issues of Nitzan Farhi

Hi 😄 , an exception occured to me when ```parse_message_line``` receives an empty string. When this occurs, ```parse_message_line``` returns None. After that, ```"\n".join``` throws an exception when one of the...

When the code in parser.py:70 is called: ``` commit['message'] = "\n".join( parse_message_line(msgline) for msgline in parts['message'].splitlines() ) ``` and `parse_message_line` is returned as None, and exception is thrown. The solution...