changeset 229:64ec8ff87c6e

foiled by pyflakes
author Rizmari Versfeld <rizziepit@gmail.com>
date Sat, 12 May 2012 23:11:55 +0200
parents 3955d126ca26
children 745a6ee5f643
files gamelib/mainmenu.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/gamelib/mainmenu.py	Sat May 12 23:09:33 2012 +0200
+++ b/gamelib/mainmenu.py	Sat May 12 23:11:55 2012 +0200
@@ -19,7 +19,6 @@
 from gamelib.engine import AddWindow
 from gamelib.gamegui import LabWindow
 
-from gamelib.constants import WIDTH, HEIGHT
 from gamelib.game_base import get_save_filename
 
 
@@ -68,7 +67,8 @@
         self.resume = None
         self.screen = screen
         self.background_colour = (0, 0, 0)
-        self.background_image = image.load(data.filepath('images/main_background.jpg'))
+        self.background_image = image.load(data.filepath(
+                'images/main_background.jpg'))
         button1 = NewGameButton(self)
         self.add_child(button1)
         button2 = QuitButton()