#!/usr/bin/env python

# Make 'cwd'/src in the PYTHONPATH
import sys, os, os.path
os.chdir("/usr/share/pyicq-t")
sys.path[0] = "/usr/share/pyicq-t/src"

# Start the service
import main
if main.profilelog:
	import profile
	profile.run('main.main()', main.profilelog)
else:
	main.main()
