Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py

changeset 1773
05265254f212
parent 1688
389ee9508e35
child 2302
f29e9405c851
--- a/Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py	Mon Apr 09 17:02:31 2012 +0200
+++ b/Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py	Mon Apr 09 18:51:29 2012 +0200
@@ -73,9 +73,11 @@
             for file in allFiles:
                 uptodate = True
                 if file.repos_text_status != pysvn.wc_status_kind.none:
-                    uptodate = uptodate and file.repos_text_status == file.text_status
+                    uptodate = uptodate and \
+                        file.repos_text_status != pysvn.wc_status_kind.modified
                 if file.repos_prop_status != pysvn.wc_status_kind.none:
-                    uptodate = uptodate and file.repos_prop_status == file.prop_status
+                    uptodate = uptodate and \
+                        file.repos_prop_status != pysvn.wc_status_kind.modified
                 
                 status = ""
                 if not uptodate:

eric ide

mercurial