summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lorrycontroller/lstroves.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lorrycontroller/lstroves.py b/lorrycontroller/lstroves.py
index 10062ab..e69dce2 100644
--- a/lorrycontroller/lstroves.py
+++ b/lorrycontroller/lstroves.py
@@ -77,7 +77,7 @@ class TroveRepositoryLister(object):
def parse_ls_output(self, ls_output):
repo_paths = []
for line in ls_output.splitlines():
- words = line.split()
+ words = line.split(None, 1)
if words[0].startswith('R') and len(words) == 2:
repo_paths.append(words[1])
return repo_paths