summary refs log tree commit diff stats
path: root/ranger.py
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-04-14 20:01:47 +0200
committerhut <hut@lavabit.com>2010-04-14 20:01:47 +0200
commitef18cd85cd48117dd8bd36325887bb2a7cc49653 (patch)
treeca320ae025cc0426527f62b27c08ebbc406b0590 /ranger.py
parent681d9f6adf185f1c3adf0801da3d3baac99e1ea7 (diff)
parent5a8c735198079d928a7611b1f9c5aa7bf6d62a1e (diff)
downloadranger-ef18cd85cd48117dd8bd36325887bb2a7cc49653.tar.gz
Merge branch 'newkey' into devel
Diffstat (limited to 'ranger.py')
-rwxr-xr-xranger.py4
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()
-