All pastes #1819620 Raw Edit

Mine

public text v1 · immutable
#1819620 ·published 2010-03-02 18:04 UTC
rendered paste body
38a39,40
>     stop = False
>
118a121
>             self.stop = True
503,506c506,511
<     try:
<         bot.start()
<     finally:
<         db.close()
---
>     while not bot.stop:
>         try:
>             bot.start()
>         except:
>             print '%s: Exception occured, restarting bot'
>     db.close()