| 57 |
| 58 |
| 59 |
| 60 |
| 61 |
| 62 |
| 63 |
| 64 |
| 65 |
| 66 |
| 67 |
| 68 | |
def _svnwrite(self, cmd, *args): |
""" execute an svn command, append our own url """ |
l = ['svn %s' % cmd] |
args = ['"%s"' % self._escape(item) for item in args] |
l.extend(args) |
l.append('"%s"' % self._encodedurl()) |
|
string = " ".join(l) |
if DEBUG: |
print "execing", string |
-> out = self._svncmdexecauth(string) |
return out | |