Skip to content

Commit

Permalink
New line splitting
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Jan 29, 2019
1 parent 93d7092 commit d64ae50
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/quorum/config.py
Expand Up @@ -233,7 +233,8 @@ def get_homes(

data = data.decode("utf-8")
data = data.strip()
paths = data.split()
paths = data.splitlines()
paths = [path.strip() for path in paths]

for path in paths:
path = path.strip()
Expand Down

0 comments on commit d64ae50

Please sign in to comment.