Skip to content

Commit

Permalink
fixed bug in grid size
Browse files Browse the repository at this point in the history
  • Loading branch information
electronut committed Jul 12, 2014
1 parent f34064b commit 1b2536d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conway/conway.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def main():

# set grid size
N = 100
if args.N and args.N > 8:
if args.N and int(args.N) > 8:
N = int(args.N)

# set animation update interval
Expand Down

0 comments on commit 1b2536d

Please sign in to comment.