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, 3 insertions, 3 deletions
diff --git a/ranger.py b/ranger.py
index efd81f4d..d2e90ae7 100755
--- a/ranger.py
+++ b/ranger.py
@@ -17,8 +17,8 @@ test -z "$1" || shift
 returnvalue=$?
 test -f "$tempfile" &&
 if [ "$(cat -- "$tempfile")" != "$(echo -n `pwd`)" ]; then
-	cd "$(cat "$tempfile")"
-	rm -f -- "$tempfile"
+    cd "$(cat "$tempfile")"
+    rm -f -- "$tempfile"
 fi
 return $returnvalue
 """ and None
@@ -33,7 +33,7 @@ sys.dont_write_bytecode = '-c' in argv or '--clean' in argv
 
 # Don't import ./ranger when running an installed binary at /usr/.../ranger
 if __file__[:4] == '/usr' and exists('ranger') and abspath('.') in sys.path:
-	sys.path.remove(abspath('.'))
+    sys.path.remove(abspath('.'))
 
 # Start ranger
 import ranger