Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py

changeset 3009
bf5ae5d7477d
parent 2963
745d38097b7f
child 3020
542e97d4ecb3
child 3057
10516539f238
--- a/Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py	Sat Oct 12 15:01:28 2013 +0200
+++ b/Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py	Sat Oct 12 17:31:40 2013 +0200
@@ -328,10 +328,12 @@
                     uptodate = True
                     if file.repos_text_status != pysvn.wc_status_kind.none:
                         uptodate = uptodate and \
-                            file.repos_text_status != pysvn.wc_status_kind.modified
+                            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 != pysvn.wc_status_kind.modified
+                            file.repos_prop_status != \
+                                pysvn.wc_status_kind.modified
                     
                     lockState = " "
                     if file.entry is not None and \
@@ -348,7 +350,8 @@
                              file.entry.lock_token != file.repos_lock["token"]:
                             lockState = "S"
                     
-                    fpath = Utilities.normcasepath(os.path.join(self.dname, file.path))
+                    fpath = Utilities.normcasepath(
+                        os.path.join(self.dname, file.path))
                     if fpath in changelistsDict:
                         changelist = changelistsDict[fpath]
                     else:

eric ide

mercurial