Re: Pygame with python 3.3.2

2013-10-09 Thread Mark Lawrence
On 09/10/2013 08:03, markot...@gmail.com wrote: From pygame tutorials i copied this example: import pygame class spritesheet(object): def __init__(self, filename): try: self.sheet = pygame.image.load(filename).convert() except pygame.error, message:

Pygame with python 3.3.2

2013-10-09 Thread markotaht
>From pygame tutorials i copied this example: import pygame class spritesheet(object): def __init__(self, filename): try: self.sheet = pygame.image.load(filename).convert() except pygame.error, message: print('Unable to load spritesheet image:', filenam