summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--ranger/commands.py2
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