Skip to content

Commit

Permalink
Didn't import the platform module, which would cause errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
asweigart committed Mar 1, 2013
1 parent 4445f80 commit d2c05d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zombiedice.py
Expand Up @@ -33,7 +33,7 @@
Instructions for making your own bot can be found here: http://inventwithpython.com/blog/2012/11/21/how-to-make-ai-bots-for-zombie-dice
"""

import logging, random, sys, copy
import logging, random, sys, copy, platform
logging.basicConfig(level=logging.ERROR, format='%(asctime)s - %(levelname)s - %(message)s')
logging.debug('Start of the Zombie Dice program.')

Expand Down

0 comments on commit d2c05d1

Please sign in to comment.