Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py

changeset 1773
05265254f212
parent 1640
1699d46026cd
child 1886
732f94385668
equal deleted inserted replaced
1772:f325dfdc8f6b 1773:05265254f212
322 counter = 0 322 counter = 0
323 for file in allFiles: 323 for file in allFiles:
324 uptodate = True 324 uptodate = True
325 if file.repos_text_status != pysvn.wc_status_kind.none: 325 if file.repos_text_status != pysvn.wc_status_kind.none:
326 uptodate = uptodate and \ 326 uptodate = uptodate and \
327 file.repos_text_status == file.text_status 327 file.repos_text_status != pysvn.wc_status_kind.modified
328 if file.repos_prop_status != pysvn.wc_status_kind.none: 328 if file.repos_prop_status != pysvn.wc_status_kind.none:
329 uptodate = uptodate and \ 329 uptodate = uptodate and \
330 file.repos_prop_status == file.prop_status 330 file.repos_prop_status != pysvn.wc_status_kind.modified
331 331
332 lockState = " " 332 lockState = " "
333 if file.entry is not None and \ 333 if file.entry is not None and \
334 hasattr(file.entry, 'lock_token') and \ 334 hasattr(file.entry, 'lock_token') and \
335 file.entry.lock_token is not None: 335 file.entry.lock_token is not None:

eric ide

mercurial