Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py

branch
Py2 comp.
changeset 3060
5883ce99ee12
parent 3057
10516539f238
parent 3037
a417a0670a36
child 3145
a9de05d4a22f
diff -r 0a02c433f52d -r 5883ce99ee12 Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py
--- a/Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py	Fri Nov 01 15:48:48 2013 +0100
+++ b/Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py	Sun Nov 03 15:58:22 2013 +0100
@@ -84,19 +84,19 @@
                     status = "U"
                     self.shouldUpdate = True
                 elif file.text_status == pysvn.wc_status_kind.conflicted or \
-                   file.prop_status == pysvn.wc_status_kind.conflicted:
+                        file.prop_status == pysvn.wc_status_kind.conflicted:
                     status = "Z"
                 elif file.text_status == pysvn.wc_status_kind.deleted or \
-                   file.prop_status == pysvn.wc_status_kind.deleted:
+                        file.prop_status == pysvn.wc_status_kind.deleted:
                     status = "O"
                 elif file.text_status == pysvn.wc_status_kind.modified or \
-                   file.prop_status == pysvn.wc_status_kind.modified:
+                        file.prop_status == pysvn.wc_status_kind.modified:
                     status = "M"
                 elif file.text_status == pysvn.wc_status_kind.added or \
-                   file.prop_status == pysvn.wc_status_kind.added:
+                        file.prop_status == pysvn.wc_status_kind.added:
                     status = "A"
                 elif file.text_status == pysvn.wc_status_kind.replaced or \
-                   file.prop_status == pysvn.wc_status_kind.replaced:
+                        file.prop_status == pysvn.wc_status_kind.replaced:
                     status = "R"
                 if status:
                     states[file.path] = status

eric ide

mercurial