diff gamelib/scenes/mess.py @ 264:3cedc4f95925

Ran pyflakes and fixed some minor things.
author Jeremy Thurgood <firxen@gmail.com>
date Fri, 27 Aug 2010 19:35:20 +0200
parents 3b4a78422201
children 4012d50a4674
line wrap: on
line diff
--- a/gamelib/scenes/mess.py	Fri Aug 27 19:29:37 2010 +0200
+++ b/gamelib/scenes/mess.py	Fri Aug 27 19:35:20 2010 +0200
@@ -159,14 +159,16 @@
         if self.get_data("status") == "blocked":
             self.set_data("status", "broken")
             self.set_interact("broken")
-            return Result("With a flurry of disgusting mutant vegetable chunks,"
-                          " you clear the overgrown broccoli away from the access"
-                          " panel and reveal some broken tubes. They look important.",
+            return Result("With a flurry of disgusting mutant vegetable "
+                          "chunks, you clear the overgrown broccoli away from "
+                          "the access panel and reveal some broken tubes. "
+                          "They look important.",
                           soundfile='chopping.ogg')
         elif self.get_data("status") == "broken":
             return Result("It looks broken enough already.")
         else:
-            return Return("After all that effort fixing it, chopping it to bits doesn't seem very smart.")
+            return Result("After all that effort fixing it, chopping it to "
+                          "bits doesn't seem very smart.")
 
     def interact_with_pipe(self, item):
         if self.get_data("status") == "blocked":