summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-02-15 14:42:20 +0100
committerhut <hut@lavabit.com>2010-02-15 21:40:47 +0100
commitb8d08418a72a71526a6dbac167e9588f5002610f (patch)
tree62dc07ec2ae194654c083e1fbc60a564da2d492e
parent621a1a39cf9811c1b5941c267710fb1dafee4657 (diff)
downloadranger-b8d08418a72a71526a6dbac167e9588f5002610f.tar.gz
commands: fixed cd command in quickconsole
-rw-r--r--ranger/commands.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/ranger/commands.py b/ranger/commands.py
index 4f291b0a..be2665fa 100644
--- a/ranger/commands.py
+++ b/ranger/commands.py
@@ -168,9 +168,8 @@ class cd(Command):
 		line = parse(self.line)
 		pwd = self.fm.env.pwd.path
 
-		try:
-			rel_dest = line.rest(1)
-		except IndexError:
+		rel_dest = line.rest(1)
+		if not rel_dest:
 			return False
 
 		abs_dest = normpath(join(pwd, rel_dest))