--- a/Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py Tue Oct 15 22:03:54 2013 +0200 +++ b/Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py Fri Oct 18 23:00:41 2013 +0200 @@ -330,10 +330,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 \ @@ -350,7 +352,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: @@ -886,6 +889,7 @@ """ Private method to retrieve all entries, that have a locked status. + @param indicators list of indicators to check against (list of strings) @return list of all items with a locked status """ lockitems = []