diff options
author | hut <hut@lavabit.com> | 2011-10-09 02:38:56 +0200 |
---|---|---|
committer | hut <hut@lavabit.com> | 2011-10-09 02:38:56 +0200 |
commit | cdf036e10db32d61c0a411636f7b78d711249bb3 (patch) | |
tree | eadb857ebe37dd66c53c814c04ac7c3c49c413fc | |
parent | 257aba7d5fd1050c019b1eadcc9b13909138f2a4 (diff) | |
download | ranger-cdf036e10db32d61c0a411636f7b78d711249bb3.tar.gz |
widgets.statusbar: Show mtime, like ls -l, not ctime
-rw-r--r-- | ranger/gui/widgets/statusbar.py | 2 |
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 |