summary refs log tree commit diff stats
path: root/ranger.py
diff options
context:
space:
mode:
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
 
7 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157