summary refs log tree commit diff stats
path: root/ranger.py
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2009-12-11 17:13:59 +0100
committerhut <hut@lavabit.com>2009-12-11 17:13:59 +0100
commit3de15ddd7fb0151e5f43f0b8e7d06bd76568e235 (patch)
treee27e7ee5120366418a06316740aa7de4eca496e8 /ranger.py
parent69e97c429fb0d9f25cf1f2dc7d19e42123b0bf72 (diff)
downloadranger-3de15ddd7fb0151e5f43f0b8e7d06bd76568e235.tar.gz
restructurations
Diffstat (limited to 'ranger.py')
-rwxr-xr-xranger.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/ranger.py b/ranger.py
index 090789c5..7ab00a26 100755
--- a/ranger.py
+++ b/ranger.py
@@ -1,6 +1,6 @@
 #!/usr/bin/python
 # coding=utf-8
-# ranger: Browse your files inside the console.
+# ranger: Browse your files inside the terminal.
 
 
 # An embedded shell script. Assuming this file is /usr/bin/ranger,
@@ -13,11 +13,13 @@
 if [ $1 ]; then
 	cd "`$1 --cd-after-exit $@ 3>&1 1>&2 2>&3 3>&-`"
 else
-	echo "use with: source path/to/ranger.py path/to/ranger.py"
+	echo "usage: source path/to/ranger.py path/to/ranger.py"
 fi
 return 1
 """
 
+__doc__ = """Ranger - file browser for the unix terminal"""
+
 try:
 	from ranger.main import main