summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-04-16 17:18:27 +0200
committerhut <hut@lavabit.com>2010-04-16 17:18:27 +0200
commit805e9d231f5bffea4f545382e32b918c5d0205d4 (patch)
tree4e9489378bfcb370a10c65f1c0a72f610f4cfe09
parent6e856640dcec242ab26d1648dcb2de70801d9e81 (diff)
parent70c36ff583d1e114f6553013f9a25c2f1533b585 (diff)
downloadranger-805e9d231f5bffea4f545382e32b918c5d0205d4.tar.gz
Merge branch 'master' into devel
-rw-r--r--ranger/gui/widgets/statusbar.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/ranger/gui/widgets/statusbar.py b/ranger/gui/widgets/statusbar.py
index bff3d8ad..b414153a 100644
--- a/ranger/gui/widgets/statusbar.py
+++ b/ranger/gui/widgets/statusbar.py
@@ -24,7 +24,7 @@ such as the space used by all the files in this directory.
 from pwd import getpwuid
 from grp import getgrgid
 from os import getuid
-from time import strftime, localtime
+from time import time, strftime, localtime
 
 from ranger.ext.human_readable import human_readable
 from . import Widget
@@ -49,7 +49,7 @@ class StatusBar(Widget):
 		self.column = column
 		self.settings.signal_bind('setopt.display_size_in_status_bar',
 				self.request_redraw, weak=True)
-	
+
 	def request_redraw(self):
 		self.need_redraw = True
 
@@ -245,14 +245,12 @@ class StatusBar(Widget):
 			right.add('All', base, 'all')
 
 	def _print_result(self, result):
-		import _curses
 		self.win.move(0, 0)
 		for part in result:
 			self.color(*part.lst)
 			self.addstr(part.string)
 		self.color_reset()
 
-from time import time
 class Message(object):
 	elapse = None
 	text = None
> 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235