--HG--
branch : pmacs2
This commit is contained in:
moculus 2008-11-25 13:46:59 +00:00
parent beeb52edcc
commit f8a2248a28
1 changed files with 1 additions and 1 deletions

View File

@ -189,7 +189,7 @@ class SvnDiff3(Method):
if path.startswith(cwd):
path = path[len(cwd):]
cmd = "svn diff -r %s -r %s %r" % (rev1, rev2, path)
cmd = "svn diff -r %s:%s %r" % (rev1, rev2, path)
(status, data) = commands.getstatusoutput(cmd)
status = status >> 8