diff options
author | hut <hut@lavabit.com> | 2011-10-08 23:21:21 +0200 |
---|---|---|
committer | hut <hut@lavabit.com> | 2011-10-08 23:21:21 +0200 |
commit | 257aba7d5fd1050c019b1eadcc9b13909138f2a4 (patch) | |
tree | 06015a7169dd0b622b76d4a4128acbb7ccfc5f6e | |
parent | f93538d4a07b26d912878d4a4c5337dfb8896fd0 (diff) | |
download | ranger-257aba7d5fd1050c019b1eadcc9b13909138f2a4.tar.gz |
core.helper: fixed crash
-rw-r--r-- | ranger/core/helper.py | 3 |
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 |