summary refs log tree commit diff stats
path: root/ranger
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2011-10-09 02:38:56 +0200
committerhut <hut@lavabit.com>2011-10-09 02:38:56 +0200
commitcdf036e10db32d61c0a411636f7b78d711249bb3 (patch)
treeeadb857ebe37dd66c53c814c04ac7c3c49c413fc /ranger
parent257aba7d5fd1050c019b1eadcc9b13909138f2a4 (diff)
downloadranger-cdf036e10db32d61c0a411636f7b78d711249bb3.tar.gz
widgets.statusbar: Show mtime, like ls -l, not ctime
Diffstat (limited to 'ranger')
-rw-r--r--ranger/gui/widgets/statusbar.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/gui/widgets/statusbar.py b/ranger/gui/widgets/statusbar.py
index d8704af3..1a606aec 100644
--- a/ranger/gui/widgets/statusbar.py
+++ b/ranger/gui/widgets/statusbar.py
@@ -183,7 +183,7 @@ class StatusBar(Widget):
 			left.add_space()
 
 			left.add(strftime(self.timeformat,
-					localtime(stat.st_ctime)), 'mtime')
+					localtime(stat.st_mtime)), 'mtime')
 
 	def _get_owner(self, target):
 		uid = target.stat.st_uid
1-13 23:35:25 +0100 commandlist: aliases are now references rather than copies' href='/akspecs/ranger/commit/test/tc_commandlist.py?h=v1.8.1&id=0bc410c523f397f9c46c04ded5b3da1da65a6242'>0bc410c5 ^
11ff42af ^
d8ea8d5f ^
0bc410c5 ^
11ff42af ^

0bc410c5 ^



11ff42af ^
0bc410c5 ^
11ff42af ^
d8ea8d5f ^
0bc410c5 ^

11ff42af ^
d8ea8d5f ^
0bc410c5 ^
698ba46a ^








ccd3f3c3 ^
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
88
89
90
91
92
93
94
95
96
97
98
99
100