Merge "Handle (ignore) binary file diffs"

This commit is contained in:
Jenkins 2015-01-23 18:57:52 +00:00 committed by Gerrit Code Review
commit a38548a7d8

View File

@ -454,6 +454,8 @@ class Repo(object):
continue
if line.startswith("index"):
continue
if line.startswith("Binary files"):
continue
if not last_line:
raise Exception("Unhandled line: %s" % line)
f.finalize()