comparison gamelib/scenes/bridge.py @ 800:374d96e0b55e pyntnclick

pep8/pyflakes fixes.
author Jeremy Thurgood <firxen@gmail.com>
date Sun, 27 Jan 2013 13:42:58 +0200
parents bdaffaa8b6bf
children eed75a1d50c4
comparison
equal deleted inserted replaced
799:a04a876ee369 800:374d96e0b55e
650 if not self.game.scenes['engine'].get_data('engine online'): 650 if not self.game.scenes['engine'].get_data('engine online'):
651 surface.blit(self._alert_messages['engine offline'], (xpos, ypos)) 651 surface.blit(self._alert_messages['engine offline'], (xpos, ypos))
652 ypos += (self._alert_messages['engine offline'].get_size()[1] 652 ypos += (self._alert_messages['engine offline'].get_size()[1]
653 + self.ALERT_SPACING) 653 + self.ALERT_SPACING)
654 if (self.game.scenes['mess'].get_data('life support status') 654 if (self.game.scenes['mess'].get_data('life support status')
655 == 'broken'): 655 == 'broken'):
656 surface.blit(self._alert_messages['life support'], (xpos, ypos)) 656 surface.blit(self._alert_messages['life support'], (xpos, ypos))
657 ypos += (self._alert_messages['life support'].get_size()[1] 657 ypos += (self._alert_messages['life support'].get_size()[1]
658 + self.ALERT_SPACING) 658 + self.ALERT_SPACING)
659 if (self.game.scenes['mess'].get_data('life support status') 659 if (self.game.scenes['mess'].get_data('life support status')
660 == 'replaced'): 660 == 'replaced'):
661 surface.blit(self._alert_messages['life support partial'], 661 surface.blit(self._alert_messages['life support partial'],
662 (xpos, ypos)) 662 (xpos, ypos))
663 ypos += (self._alert_messages['life support partial'].get_size()[1] 663 ypos += (self._alert_messages['life support partial'].get_size()[1]
664 + self.ALERT_SPACING) 664 + self.ALERT_SPACING)
665 665