fix svn error output

This commit is contained in:
Arvid Norberg 2013-06-18 15:45:50 +00:00
parent 8e43a80fe9
commit cf975aa856
1 changed files with 3 additions and 3 deletions

View File

@ -35,9 +35,9 @@ import subprocess
import sys
def indent(s):
s = string.split(s, '\n')
s = [(3 * ' ') + string.lstrip(line) for line in s]
s = string.join(s, '\n')
s = s.split('\n')
s = [(3 * ' ') + line.lstrip() for line in s]
s = '\n'.join(s)
return s
# returns a list of new revisions