Author: dsahlberg
Date: Sun Apr 28 18:18:50 2024
New Revision: 1917405
URL: http://svn.apache.org/viewvc?rev=1917405&view=rev
Log:
r1917397 contained mixed space and tab. Replace all tabs.
* contrib/client-side/svn_apply_autoprops.py
(filter_walk): As above
Modified:
subversion/trunk/contrib/client-side/svn_apply_autoprops.py
Modified: subversion/trunk/contrib/client-side/svn_apply_autoprops.py
URL:
http://svn.apache.org/viewvc/subversion/trunk/contrib/client-side/svn_apply_autoprops.py?rev=1917405&r1=1917404&r2=1917405&view=diff
==============================================================================
--- subversion/trunk/contrib/client-side/svn_apply_autoprops.py (original)
+++ subversion/trunk/contrib/client-side/svn_apply_autoprops.py Sun Apr 28
18:18:50 2024
@@ -147,8 +147,8 @@ def filter_walk(autoprop_lines, dirname,
for prop in prop_list:
command = ['svn', 'propset', prop[0], prop[1]]
for f in matching_filenames:
- if '@' in f:
- f += '@'
+ if '@' in f:
+ f += '@'
command += ["%s/%s" % (dirname, f)]
status = subprocess.call(command)