Index: tools/svn.py |
=================================================================== |
--- tools/svn.py (revision 11593) |
+++ tools/svn.py (working copy) |
@@ -135,7 +135,7 @@ |
if status & STATUS_NOT_UNDER_SVN_CONTROL: |
status_types_string += '\?' |
status_regex_string = '^[%s].....\s+(.+)$' % status_types_string |
- stdout = self._RunCommand([SVN, 'status']) |
+ stdout = self._RunCommand([SVN, 'status']).replace('\r', '') |
status_regex = re.compile(status_regex_string, re.MULTILINE) |
files = status_regex.findall(stdout) |
return files |
@@ -179,5 +179,5 @@ |
version you wish to obtain |
@param dest_path destination to which to write the base content |
""" |
- self._RunCommand([SVN, 'export', '--revision', 'BASE', |
+ self._RunCommand([SVN, 'export', '--revision', 'BASE', '--force', |
file_within_repo, dest_path]) |