Skip to content

Commit

Permalink
bug in __init__, parameter ordered changed
Browse files Browse the repository at this point in the history
  • Loading branch information
JnyJny committed Nov 18, 2015
1 parent 215d769 commit 417384f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/CGameOfLife.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def __init__(self,window,cellClass=None):
'''
h,w = window.getmaxyx()
super(CursesWorld,self).__init__(cellClass,w,h-1)
super(CursesWorld,self).__init__(w,h-1,cellClass)
self.w = window
self.interval = 0
for n,fg in enumerate(self.colors):
Expand Down

0 comments on commit 417384f

Please sign in to comment.