12 lines
218 B
Python
Executable file
12 lines
218 B
Python
Executable file
#!/usr/bin/python
|
|
# Copyright (c) Twisted Matrix Laboratories.
|
|
# See LICENSE for details.
|
|
import sys
|
|
|
|
try:
|
|
import _preamble
|
|
except ImportError:
|
|
sys.exc_clear()
|
|
|
|
from twisted.scripts.tapconvert import run
|
|
run()
|