Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/block.py
diff options
context:
space:
mode:
authorWalter Bender <walter@walter-laptop.(none)>2010-01-21 13:13:57 (GMT)
committer Walter Bender <walter@walter-laptop.(none)>2010-01-21 13:13:57 (GMT)
commit2342540bea0e638dc39d99e3030f10475df97264 (patch)
treeaa6b0d9ec461baf281e8e4a48a7d7c32268e41b2 /block.py
parentc2eb8f22e0edeaa0ae52a14158fec7351514f223 (diff)
eliminate sprites ambiguity
Diffstat (limited to 'block.py')
-rw-r--r--block.py4
1 files changed, 2 insertions, 2 deletions
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: