summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2011-10-01 21:53:48 +0200
committerhut <hut@lavabit.com>2011-10-01 21:53:48 +0200
commit4fbe1e8d0e0ed405b3ce544d83a30d02cc0260b4 (patch)
treea75b0eb7dd1892301fad2a47bd1e7be7720641ba
parent08b619ba3a3d2d384d0da71968d47b1d56998a4d (diff)
downloadranger-4fbe1e8d0e0ed405b3ce544d83a30d02cc0260b4.tar.gz
core.actions: killed hidden ninja bug
-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 9a132a42..2bcfd72c 100644
--- a/ranger/core/actions.py
+++ b/ranger/core/actions.py
@@ -112,7 +112,7 @@ class Actions(FileManagerAware, EnvironmentAware, SettingsAware):
 			except Exception as error:
 				self.notify(error)
 
-	def substitute_macros(self, string, additional):
+	def substitute_macros(self, string, additional=dict()):
 		return _MacroTemplate(string).safe_substitute(self._get_macros(),
 				**additional)
 
hared.settings.html?h=v1.4.3&id=cc813408772738fc124130095ba4a5c33c84dea3'>^
b3556b21 ^
62cd83ba ^






f07bb12f ^

62cd83ba ^




c776804d ^

62cd83ba ^
c776804d ^
62cd83ba ^
f07bb12f ^





34a60763 ^
f07bb12f ^









34a60763 ^
f07bb12f ^
62cd83ba ^


f07bb12f ^








62cd83ba ^
f07bb12f ^


62cd83ba ^







f07bb12f ^




c776804d ^
f07bb12f ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87