about summary refs log tree commit diff stats
path: root/ranger/core/helper.py
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2011-10-08 23:21:21 +0200
committerhut <hut@lavabit.com>2011-10-08 23:21:21 +0200
commit257aba7d5fd1050c019b1eadcc9b13909138f2a4 (patch)
tree06015a7169dd0b622b76d4a4128acbb7ccfc5f6e /ranger/core/helper.py
parentf93538d4a07b26d912878d4a4c5337dfb8896fd0 (diff)
downloadranger-257aba7d5fd1050c019b1eadcc9b13909138f2a4.tar.gz
core.helper: fixed crash
Diffstat (limited to 'ranger/core/helper.py')
-rw-r--r--ranger/core/helper.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/ranger/core/helper.py b/ranger/core/helper.py
index b996d2bb..e95c0752 100644
--- a/ranger/core/helper.py
+++ b/ranger/core/helper.py
@@ -64,9 +64,6 @@ def parse_arguments():
 	options, positional = parser.parse_args()
 	arg = OpenStruct(options.__dict__, targets=positional)
 	arg.confdir = expanduser(arg.confdir)
-	if arg.fail_if_run:
-		arg.fail_unless_cd = arg.fail_if_run
-		del arg['fail_if_run']
 
 	return arg