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