Skip to content

Commit

Permalink
minor text correction
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Joseph Walsh committed Oct 25, 2011
1 parent 266633e commit 49300a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions intellect/examples/rulesfest/BlackSheep.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@ def __init__(self):
''' '''
self.bags_of_wool = [] self.bags_of_wool = []
BlackSheep.number = BlackSheep.number + 1 BlackSheep.number = BlackSheep.number + 1
self.name = "Sheep {0}".format(BlackSheep.number) self.name = "Sheep #{0}".format(BlackSheep.number)


logging.getLogger("example").debug("Creating #{0}.".format(self.name)) logging.getLogger("example").debug("Creating {0}.".format(self.name))


self.lock = Lock() self.lock = Lock()
thread.start_new_thread(grow_wool, (self,)) thread.start_new_thread(grow_wool, (self,))
Expand Down

0 comments on commit 49300a0

Please sign in to comment.