617
615
def action_svnupdate(req, fields):
618
616
"""Performs a "svn update" to each file specified.
622
620
path = fields.getfirst('path')
625
622
raise ActionError("Required field missing")
634
623
path = actionpath_to_local(req, path)
638
627
except pysvn.ClientError, e:
639
628
raise ActionError(str(e))