Chromium Code Reviews| Index: source/libvpx/tools/diff.py |
| =================================================================== |
| --- source/libvpx/tools/diff.py (revision 251189) |
| +++ source/libvpx/tools/diff.py (working copy) |
| @@ -56,6 +56,9 @@ |
| elif line[0] == " ": |
| self.left.Append(line) |
| self.right.Append(line) |
| + elif line[0] == "\\": |
| + # Ignore newline messages from git diff. |
| + pass |
| else: |
| assert False, ("Unrecognized character at start of diff line " |
| "%r" % line[0]) |