about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorVictor Lopez <bigbigtor@users.noreply.github.com>2019-02-24 20:59:52 +0000
committerVictor Lopez <bigbigtor@users.noreply.github.com>2019-02-24 20:59:52 +0000
commit02efcd603b5ebfd76823afdc15dee3878dad04db (patch)
treeac15fd32a22d1d4824c7fa7c52bc7967f474d502
parentbf0ccb4c567a2451e9a2af8cf8f35b2821993385 (diff)
downloadranger-02efcd603b5ebfd76823afdc15dee3878dad04db.tar.gz
filter out empty lines before parsing the status
-rw-r--r--ranger/ext/vcs/svn.py2
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 == ' ':