diff options
author | Victor Lopez <bigbigtor@users.noreply.github.com> | 2019-02-24 20:59:52 +0000 |
---|---|---|
committer | Victor Lopez <bigbigtor@users.noreply.github.com> | 2019-02-24 20:59:52 +0000 |
commit | 02efcd603b5ebfd76823afdc15dee3878dad04db (patch) | |
tree | ac15fd32a22d1d4824c7fa7c52bc7967f474d502 | |
parent | bf0ccb4c567a2451e9a2af8cf8f35b2821993385 (diff) | |
download | ranger-02efcd603b5ebfd76823afdc15dee3878dad04db.tar.gz |
filter out empty lines before parsing the status
-rw-r--r-- | ranger/ext/vcs/svn.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ranger/ext/vcs/svn.py b/ranger/ext/vcs/svn.py index ef958a24..27216a43 100644 --- a/ranger/ext/vcs/svn.py +++ b/ranger/ext/vcs/svn.py @@ -98,6 +98,7 @@ class SVN(Vcs): # Paths with status lines = self._run(['status']).split('\n') + lines = list(filter(None, lines)) if not lines: return 'sync' for line in lines: @@ -116,6 +117,7 @@ class SVN(Vcs): # Paths with status lines = self._run(['status']).split('\n') + lines = list(filter(None, lines)) for line in lines: code, path = line[0], line[8:] if code == ' ': |