diff fetch_command.py @ 111:5497d1264b4d

fetch_command: Fix mis-converted executable when svn:executable was set to the empty string.
author Augie Fackler <durin42@gmail.com>
date Tue, 25 Nov 2008 09:45:38 -0600
parents a4dcffaa6538
children e58c2f1de059
line wrap: on
line diff
--- a/fetch_command.py
+++ b/fetch_command.py
@@ -147,14 +147,12 @@ Cannot display: file marked as a binary 
 property_exec_set_re = re.compile(r'''Property changes on: ([^\n]*)
 _*
 (?:Added|Name): svn:executable
-   \+ \*
-''')
+   \+''')
 
 property_exec_removed_re = re.compile(r'''Property changes on: ([^\n]*)
 _*
 (?:Deleted|Name): svn:executable
-   - \*
-''')
+   -''')
 
 empty_file_patch_wont_make_re = re.compile(r'''Index: ([^\n]*)\n=*\n(?=Index:)''')
 
@@ -163,14 +161,12 @@ any_file_re = re.compile(r'''^Index: ([^
 property_special_set_re = re.compile(r'''Property changes on: ([^\n]*)
 _*
 (?:Added|Name): svn:special
-   \+ \*
-''')
+   \+''')
 
 property_special_removed_re = re.compile(r'''Property changes on: ([^\n]*)
 _*
 (?:Deleted|Name): svn:special
-   \- \*
-''')
+   \-''')
 
 def stupid_diff_branchrev(ui, svn, hg_editor, branch, r, parentctx, tempdir):
     """Extract all 'branch' content at a given revision.