diff options
author | hut <hut@lavabit.com> | 2010-04-12 19:02:44 +0200 |
---|---|---|
committer | hut <hut@lavabit.com> | 2010-04-12 19:02:44 +0200 |
commit | 11616e7211d50fc0856242c7fb2adc08279c5f60 (patch) | |
tree | 6238b045c30c5707bf508af024fc9238afcc2a7f | |
parent | f66939e58bb54828fe9ef9de919e4f039400472f (diff) | |
download | ranger-11616e7211d50fc0856242c7fb2adc08279c5f60.tar.gz |
ranger.py: removed whitespace
-rwxr-xr-x | ranger.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ranger.py b/ranger.py index 636bd384..06b86531 100755 --- a/ranger.py +++ b/ranger.py @@ -34,13 +34,11 @@ return 1 # embed a shellscript. __doc__ = """Ranger - file browser for the unix terminal""" - # Importing the main method may fail if the ranger directory # is neither in the same directory as this file, nor in one of # pythons global import paths. try: from ranger.__main__ import main - except ImportError: import sys if '-d' not in sys.argv and '--debug' not in sys.argv: @@ -49,7 +47,5 @@ except ImportError: print("launch ranger.py in the top directory.") else: raise - else: main() - |