def _check_wspath_info(self, fullpath, wspath): info = get_file_info(fullpath) wsinfo = self._get_wspath_info(wspath) return info == wsinfo, info, wsinfo
def _set_wspath_info(self, fullpath, wspath, info={}): if not info: info = get_file_info(fullpath) for k, v in info.items(): self.svn.propset('etcsvn:%s' % k, v, wspath)