diff gamelib/widgets.py @ 476:c72946d3a59a

Some minor pylint driven style fixes
author Neil Muller <neil@dip.sun.ac.za>
date Sun, 29 Aug 2010 11:36:16 +0200
parents 03dcb25d8370
children a9925aaf5f61 0ce08d5e2acb
line wrap: on
line diff
--- a/gamelib/widgets.py	Sun Aug 29 11:17:09 2010 +0200
+++ b/gamelib/widgets.py	Sun Aug 29 11:36:16 2010 +0200
@@ -75,7 +75,7 @@
 class BoomButton(BoomLabel):
 
     def __init__(self, text, action, screen):
-        super(BoomLabel, self).__init__(text, font=get_font(20, 'Vera.ttf'), margin=4)
+        super(BoomButton, self).__init__(text, font=get_font(20, 'Vera.ttf'), margin=4)
         self.bg_color = (0, 0, 0)
         self._frame_color = Color(50, 50, 50)
         self.action = action