17 lines
236 B
Text
17 lines
236 B
Text
|
#!/usr/bin/python
|
||
|
# Copyright (c) Twisted Matrix Laboratories.
|
||
|
# See LICENSE for details.
|
||
|
|
||
|
"""
|
||
|
tap2deb
|
||
|
"""
|
||
|
import sys
|
||
|
|
||
|
try:
|
||
|
import _preamble
|
||
|
except ImportError:
|
||
|
sys.exc_clear()
|
||
|
|
||
|
from twisted.scripts import tap2deb
|
||
|
tap2deb.run()
|