also apply "revert" to deleted items

This commit is contained in:
Josh Holtrop 2013-08-16 15:21:16 -04:00
parent f94756e615
commit 5955385e9c

2
jsvn
View File

@ -1240,7 +1240,7 @@ def revert_h(argv, svn, out, config):
if m is not None:
action = line[0]
prop_action = line[1]
if action in ('A', 'M', 'D') or prop_action == 'M':
if action in ('A', 'M', 'D', '!') or prop_action == 'M':
fname = m.group(1)
for target in argv:
if fname.startswith(os.getcwd() + os.sep):