diff options
author | hut <hut@lavabit.com> | 2009-12-24 19:39:22 +0100 |
---|---|---|
committer | hut <hut@lavabit.com> | 2009-12-24 19:39:22 +0100 |
commit | f5426c6c6788ffd4b7ee6ecfc03ad7430b6f10d8 (patch) | |
tree | 0b04ca83b0b1dcf13854caaf10f744b97e61b554 | |
parent | ec5dfcb1cb0f549fea3ecf7b0505f02e197887b2 (diff) | |
download | ranger-f5426c6c6788ffd4b7ee6ecfc03ad7430b6f10d8.tar.gz |
fixed minor logical error
-rw-r--r-- | ranger/commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/commands.py b/ranger/commands.py index 06a4321b..009de586 100644 --- a/ranger/commands.py +++ b/ranger/commands.py @@ -15,7 +15,7 @@ class parse(object): self.firstpart = '' def chunk(self, n, otherwise=''): - if len(self.chunks) >= n: + if len(self.chunks) > n: return self.chunks[n] else: return otherwise |