summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorPaweł Kraśnicki <dev@pkkm.eu>2013-12-22 13:39:35 +0100
committerPaweł Kraśnicki <dev@pkkm.eu>2013-12-22 13:39:35 +0100
commit4ff4880173b4db55e6830c57025c55cc4f1472eb (patch)
tree516fe919ab2f7cbc9e2cea84b25ace505c935900
parent1bf58392c6b26d9e6d4c5886a51c94d2526cd767 (diff)
downloadranger-4ff4880173b4db55e6830c57025c55cc4f1472eb.tar.gz
Strip leading whitespace when parsing config
-rw-r--r--ranger/core/actions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/core/actions.py b/ranger/core/actions.py
index 67223258..eb9169a6 100644
--- a/ranger/core/actions.py
+++ b/ranger/core/actions.py
@@ -287,7 +287,7 @@ class Actions(FileManagerAware, EnvironmentAware, SettingsAware):
     def source(self, filename):
         filename = os.path.expanduser(filename)
         for line in open(filename, 'r'):
-            line = line.rstrip("\r\n")
+            line = line.lstrip().rstrip("\r\n")
             if line.startswith("#") or not line.strip():
                 continue
             try:
d=0e199a8bd1a571faaa9960ad7ecfde27be7a1b19'>^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17