Removed trailing whitespace

This commit is contained in:
Asmageddon 2012-03-13 21:13:57 +01:00
parent b1ce567819
commit b8f2a1da1a

View File

@ -2,8 +2,8 @@
# basemode.py
#
# Copyright (C) 2011 Nick Lanham <nick@afternight.org>
#
# Most code in this file taken from screen.py:
#
# Most code in this file taken from screen.py:
# Copyright (C) 2009 Andrew Resch <andrewresch@gmail.com>
#
# Deluge is free software.
@ -81,7 +81,7 @@ class BaseMode(CursesStdIO):
_doRead(self) - Handle user input
refresh(self) - draw the mode to the screen
add_string(self, row, string) - add a string of text to be displayed.
add_string(self, row, string) - add a string of text to be displayed.
see method for detailed info
The init method of a subclass *must* call BaseMode.__init__
@ -185,7 +185,7 @@ class BaseMode(CursesStdIO):
def draw_statusbars(self):
self.add_string(0, self.statusbars.topbar)
self.add_string(self.rows - 1, self.statusbars.bottombar)
self.add_string(self.rows - 1, self.statusbars.bottombar)
# This mode doesn't report errors
def report_message(self):