15 lines
268 B
Text
15 lines
268 B
Text
|
#!/usr/bin/python
|
||
|
# Copyright (c) Twisted Matrix Laboratories.
|
||
|
# See LICENSE for details.
|
||
|
import os, sys
|
||
|
|
||
|
try:
|
||
|
import _preamble
|
||
|
except ImportError:
|
||
|
sys.exc_clear()
|
||
|
|
||
|
sys.path.insert(0, os.path.abspath(os.getcwd()))
|
||
|
|
||
|
from twisted.scripts.twistd import run
|
||
|
run()
|