Clean up trailing whitespace.

This commit is contained in:
Elliott Sales de Andrade
2016-05-18 05:47:34 -04:00
parent 15fcf1ed85
commit 28b722b92d
8 changed files with 119 additions and 119 deletions

View File

@ -42,11 +42,11 @@ class GtkHandlerTest(unittest.TestCase):
rh = RotateHandler(capacity=20)
rh.setLevel(logging.DEBUG)
gtkh = GtkHandler(rotate_handler=rh)
gtkh.setLevel(logging.ERROR)
l = logging.getLogger("GtkHandlerTest")
l = logging.getLogger("GtkHandlerTest")
l.setLevel(logging.DEBUG)
l.addHandler(rh)
@ -65,7 +65,7 @@ class GtkHandlerTest(unittest.TestCase):
Gtk.main_iteration()
def testSuite():
suite = unittest.makeSuite(GtkHandlerTest,'test')
return suite