示例#1
0
 def _check_wspath_info(self, fullpath, wspath):
     info = get_file_info(fullpath)
     wsinfo = self._get_wspath_info(wspath)
     return info == wsinfo, info, wsinfo
示例#2
0
 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)