Remove the assert in CommitData.parse() function
[stgit] / stgit / lib / git.py
index 3378728..f5ea965 100644 (file)
@@ -404,8 +404,6 @@ class CommitData(Immutable, Repr):
                 cd = cd.set_author(Person.parse(value))
             elif key == 'committer':
                 cd = cd.set_committer(Person.parse(value))
-            else:
-                assert False
         assert False
 
 class Commit(GitObject):