From 2342540bea0e638dc39d99e3030f10475df97264 Mon Sep 17 00:00:00 2001 From: Walter Bender Date: Thu, 21 Jan 2010 13:13:57 +0000 Subject: eliminate sprites ambiguity --- diff --git a/block.py b/block.py index 530ce2e..bd86157 100644 --- a/block.py +++ b/block.py @@ -31,9 +31,9 @@ import sprites # A class for the list of blocks and everything they share in common # class Blocks: - def __init__(self, sprites): + def __init__(self, sprite_list): self.list = [] - self.sprites = sprites + self.sprites = sprite_list def get_block(self, i): if i < 0 or i > len(self.list)-1: -- cgit v0.9.1