From bb11caa14bba950f80649a881bf0fae8be8a0b68 Mon Sep 17 00:00:00 2001 From: Walter Bender Date: Fri, 25 Mar 2011 20:39:13 +0000 Subject: fixed method name inconsistancy --- (limited to 'grid.py') 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. ''' -- cgit v0.9.1