22 lines
589 B
Python
Executable File
22 lines
589 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
# Copyright (c) 2001-2009 Twisted Matrix Laboratories.
|
|
# See LICENSE for details.
|
|
|
|
|
|
"""
|
|
This script runs GtkManhole, a client for Twisted.Manhole
|
|
"""
|
|
|
|
### Twisted Preamble
|
|
# This makes sure that users don't have to set up their environment
|
|
# specially in order to run these programs from bin/.
|
|
import sys, os, string
|
|
if string.find(os.path.abspath(sys.argv[0]), os.sep+'Twisted') != -1:
|
|
sys.path.insert(0, os.path.normpath(os.path.join(os.path.abspath(sys.argv[0]), os.pardir, os.pardir)))
|
|
### end of preamble
|
|
|
|
|
|
from twisted.scripts import manhole
|
|
manhole.run()
|