diff options
author | hut <hut@lavabit.com> | 2011-09-28 21:25:31 +0200 |
---|---|---|
committer | hut <hut@lavabit.com> | 2011-09-28 21:25:31 +0200 |
commit | 99400080aa6206cbae1895e3b9800124f94e3d7a (patch) | |
tree | b6ef21831b91d67a45a09162e40f0874bb9d0265 | |
parent | 911a89fc2458fe2b5a34d0612ee978acc333e6e8 (diff) | |
download | ranger-99400080aa6206cbae1895e3b9800124f94e3d7a.tar.gz |
minor optimization in ranger.py
-rwxr-xr-x | ranger.py | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/ranger.py b/ranger.py index c4f68923..cc402a44 100755 --- a/ranger.py +++ b/ranger.py @@ -1,7 +1,5 @@ #!/usr/bin/python -O # -*- coding: utf-8 -*- -# -# Ranger: Explore your forest of files from inside your terminal # Copyright (C) 2009, 2010 Roman Zimbelmann <romanz@lavabit.com> # # This program is free software: you can redistribute it and/or modify @@ -40,10 +38,7 @@ import os.path # Need to find out whether or not the flag --clean was used ASAP, # because --clean is supposed to disable bytecode compilation -try: - argv = sys.argv[0:sys.argv.index('--')] -except: - argv = sys.argv +argv = sys.argv[1:sys.argv.index('--')] if '--' in sys.argv else sys.argv[1:] sys.dont_write_bytecode = '-c' in argv or '--clean' in argv # Set the actual docstring |