Typo fix.

This commit is contained in:
Eric S. Raymond 2007-05-11 02:32:08 +00:00
parent 97993ac4c8
commit aef5a429d3

View file

@ -282,7 +282,7 @@ def vcunmove(src, dst):
(dir, base) = os.path.split(src)
if os.path.exists(os.path.join(dir, ".svn")):
return "svn revert %s" % dst # Revert the add at the destination
return "rm %s" dst # Remove the moved copy
return "rm %s" % dst # Remove the moved copy
return "svn revert %s" % src # Revert the deletion
else:
return "mv %s %s" % (dst, src)