71 update=not Preferences.getVCS("MonitorLocalStatus")) |
71 update=not Preferences.getVCS("MonitorLocalStatus")) |
72 states = {} |
72 states = {} |
73 for file in allFiles: |
73 for file in allFiles: |
74 uptodate = True |
74 uptodate = True |
75 if file.repos_text_status != pysvn.wc_status_kind.none: |
75 if file.repos_text_status != pysvn.wc_status_kind.none: |
76 uptodate = uptodate and file.repos_text_status == file.text_status |
76 uptodate = uptodate and \ |
|
77 file.repos_text_status != pysvn.wc_status_kind.modified |
77 if file.repos_prop_status != pysvn.wc_status_kind.none: |
78 if file.repos_prop_status != pysvn.wc_status_kind.none: |
78 uptodate = uptodate and file.repos_prop_status == file.prop_status |
79 uptodate = uptodate and \ |
|
80 file.repos_prop_status != pysvn.wc_status_kind.modified |
79 |
81 |
80 status = "" |
82 status = "" |
81 if not uptodate: |
83 if not uptodate: |
82 status = "U" |
84 status = "U" |
83 self.shouldUpdate = True |
85 self.shouldUpdate = True |