comparison gamelib/scenes/cryo.py @ 653:6aea811b1bee pyntnclick

Fix text constant broken (literally) by PEP-8 clean-up.
author Simon Cross <hodgestar+bzr@gmail.com>
date Sun, 12 Feb 2012 13:01:00 +0200
parents 660ef5793886
children d6ded808cc33
comparison
equal deleted inserted replaced
652:b8cc0be3a819 653:6aea811b1bee
344 self.open_door() 344 self.open_door()
345 return Result("You wedge the titanium femur into the chain and" 345 return Result("You wedge the titanium femur into the chain and"
346 " twist. With a satisfying *snap*, the chain breaks and" 346 " twist. With a satisfying *snap*, the chain breaks and"
347 " the door opens.", soundfile='break.ogg') 347 " the door opens.", soundfile='break.ogg')
348 elif self.get_data('door') == "shut": 348 elif self.get_data('door') == "shut":
349 text = "You bang on the door with the titanium femur. It makes a" 349 text = ("You bang on the door with the titanium femur. It makes a"
350 " clanging sound." 350 " clanging sound.")
351 return Result(text, soundfile='clang.ogg') 351 return Result(text, soundfile='clang.ogg')
352 else: 352 else:
353 return Result("You wave the femur in the doorway. Nothing" 353 return Result("You wave the femur in the doorway. Nothing"
354 " happens.") 354 " happens.")
355 355