This patch is for the following file.
https://svn.apache.org/repos/asf/subversion/trunk/contrib/client-side/svn_apply_autoprops.py
Log message:
Do not apply autoprops on symbolic links in svn_apply_autoprops.py.
Index: svn_apply_autoprops.py
===================================================================
--- svn_apply_autoprops.py (revision HEAD)
+++ svn_apply_autoprops.py (working copy)
@@ -124,6 +124,7 @@
prop_list = autoprops_line[1]
matching_filenames = fnmatch.filter(filenames, fnmatch_str)
+ matching_filenames = [f for f in matching_filenames if not os.path.islink(f)]
if not matching_filenames:
continue