$ignore should work again now.
[halbot.git] / hal.py
blob06fa97b54a7cc4b6f66c555de0c5c7e9e03c0020
1 #!/usr/bin/env python
2 import thread
4 import globals, connection, whois, basic_commands, web, factoids, reminders, panic
6 from perms import Perms
8 from connection import debug_console, process_events
9 from reminders import run_reminders
10 thread.start_new_thread(debug_console, ())
11 thread.start_new_thread(run_reminders, ())
12 if __name__ == "__main__":
13 process_events()
14 else:
15 thread.start_new_thread(process_events, ())