Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/grid.py
diff options
context:
space:
mode:
authorWalter Bender <walter.bender@gmail.com>2011-03-25 20:39:13 (GMT)
committer Walter Bender <walter.bender@gmail.com>2011-03-25 20:39:13 (GMT)
commitbb11caa14bba950f80649a881bf0fae8be8a0b68 (patch)
tree0417eb666faec8ad83c784b650698b3c4df3c74d /grid.py
parent941fd331dcd9b3e6061ed52300cc95d5ce9668af (diff)
fixed method name inconsistancy
Diffstat (limited to 'grid.py')
-rw-r--r--grid.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/grid.py b/grid.py
index 624a631..7999a22 100644
--- a/grid.py
+++ b/grid.py
@@ -117,7 +117,7 @@ class Grid:
''' Hide all of the cards on the grid. '''
for i in range(ROW * COL):
if self.grid[i] is not None:
- self.grid[i].hide_card()
+ self.grid[i].hide()
def show(self):
''' Restore all card on the grid to their x,y positions. '''