928
928
def get_svn_export_command(self, req):
929
929
"""Returns a Unix shell command to export a submission"""
930
930
svn_url = self.get_svn_url(req.config)
932
931
username = (req.user.login if req.user.login.isalnum() else
938
934
return "svn export --username %s -r%d '%s' %s"%(req.user.login,
942
938
def test_and_normalise_path(path):