summary refs log tree commit diff stats
path: root/ranger
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-04-04 19:48:30 +0200
committerhut <hut@lavabit.com>2010-04-04 19:48:30 +0200
commitaaf7252bac424d459b59f9fb631654f96affd6c9 (patch)
tree9142178f9b0d4efe82cfe4631559a4ea0b673674 /ranger
parentbf39153821a5b30e5d7aea8789e2eefabcaae67a (diff)
downloadranger-aaf7252bac424d459b59f9fb631654f96affd6c9.tar.gz
gui.displayable: fixed DisplayableContainer.remove_child()
Diffstat (limited to 'ranger')
-rw-r--r--ranger/gui/displayable.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/gui/displayable.py b/ranger/gui/displayable.py
index 88a78b37..a66732d9 100644
--- a/ranger/gui/displayable.py
+++ b/ranger/gui/displayable.py
@@ -316,7 +316,7 @@ class DisplayableContainer(Displayable):
 	def remove_child(self, obj):
 		"""Remove the object from the container."""
 		try:
-			container.remove(obj)
+			self.container.remove(obj)
 		except ValueError:
 			pass
 		else:
class='oid'>5beb25b5 ^
e59a91b7 ^
a8f47b4a ^

b3cdcdd4 ^
a9817844 ^
a9817844 ^
bff79aeb ^

a9817844 ^
b96af395 ^






bc394aaf ^

3dfeaaff ^













694d8485 ^
14da19a2 ^
694d8485 ^
14da19a2 ^
694d8485 ^
bc394aaf ^
857ba192 ^




399f5c13 ^
857ba192 ^
399f5c13 ^
5e5f569c ^
674cf583 ^




ed4e6453 ^



50581f2a ^
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