mirror of
https://github.com/wr34k/IRCUFC.git
synced 2024-11-22 07:26:39 +00:00
12 lines
174 B
Python
12 lines
174 B
Python
|
|
||
|
import os, sys
|
||
|
|
||
|
sys.dont_write_bytecode = True
|
||
|
os.chdir(sys.path[0] or ".")
|
||
|
sys.path += ("irc", "IRCUFC")
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
import irc
|
||
|
irc.IrcBot().run()
|