summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--AUTHORS1
-rwxr-xr-xrbtools/postreview.py7
2 files changed, 8 insertions, 0 deletions
diff --git a/AUTHORS b/AUTHORS
index c018726..765c328 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -6,6 +6,7 @@ Lead Developers:
Contributors:
+ * Anthony Cruz
* Chris Clark
* Dan Savilonis
* Dana Lacoste
diff --git a/rbtools/postreview.py b/rbtools/postreview.py
index 567e891..5045df8 100755
--- a/rbtools/postreview.py
+++ b/rbtools/postreview.py
@@ -2138,6 +2138,13 @@ class GitClient(SCMClient):
else:
# We already printed the "--- " line.
diff_data += "+++ %s\t(working copy)\n" % filename
+ elif line.startswith("new file mode"):
+ # Filter this out.
+ pass
+ elif line.startswith("Binary files "):
+ # Add the following so that we know binary files were added/changed
+ diff_data += "Cannot display: file marked as a binary type.\n"
+ diff_data += "svn:mime-type = application/octet-stream\n"
else:
diff_data += line