diff options
author | nfnty <git@nfnty.se> | 2017-02-02 20:31:04 +0100 |
---|---|---|
committer | nfnty <git@nfnty.se> | 2017-02-02 20:31:04 +0100 |
commit | 043b7635ed9ef60e6e08453d692685e943fb2a78 (patch) | |
tree | 7641c50a1e4853ed7fbd3581cc5703a6d93bd1f7 | |
parent | 1ea519c6ba034b3bac68565d7e5643b64e9862d5 (diff) | |
download | ranger-043b7635ed9ef60e6e08453d692685e943fb2a78.tar.gz |
api.commands.Command.rest: Fix char space matching
Fixes #772
-rw-r--r-- | ranger/api/commands.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ranger/api/commands.py b/ranger/api/commands.py index aa2da3db..d6c02aaa 100644 --- a/ranger/api/commands.py +++ b/ranger/api/commands.py @@ -129,8 +129,8 @@ class Command(FileManagerAware): """Returns everything from and after arg(n)""" got_space = True word_count = 0 - for i in range(len(self.line)): - if self.line[i] == " ": + for i, char in enumerate(self.line): + if char.isspace(): if not got_space: got_space = True word_count += 1 |