Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix #204
  • Loading branch information
sebastien committed Jul 20, 2016
1 parent 90cacdc commit dba02f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cuisine.py
Expand Up @@ -881,7 +881,7 @@ def process_find(name, exact=False):
res = []
for line in processes.split("\n"):
if not line.strip(): continue
line = RE_SPACES.split(line,3)
line = RE_SPACES.split(line.strip(),3)
# 3010 pts/1 00:00:07 gunicorn
# PID TTY TIME CMD
# 0 1 2 3
Expand Down

0 comments on commit dba02f2

Please sign in to comment.