changeset 864:39d45f2190ee

Merge
author Augie Fackler <raf@durin42.com>
date Thu, 19 Apr 2012 17:30:08 -0500
parents 6ef6c413d6de (current diff) c24130e9ddb7 (diff)
children 04729f3a3d17
files hgsubversion/stupid.py
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/hgsubversion/stupid.py
+++ b/hgsubversion/stupid.py
@@ -344,6 +344,10 @@ def diff_branchrev(ui, svn, meta, branch
     copies = getcopies(svn, meta, branch, branchpath, r, touched_files,
                        parentctx)
 
+    # We note binary files because svn's diff format doesn't describe
+    # what changed, only that a change occurred. This means we'll have
+    # to pull them as fulltexts from the server outside the diff
+    # apply.
     binary_files = set(f.name for f in changed if f.binary)
     exec_files = dict((f.name, f.executable) for f in changed
                       if f.executable is not None)