~certify-web-dev/twisted/certify-trunk

« back to all changes in this revision

Viewing changes to bin/t-im

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2009-02-21 18:17:46 UTC
  • mfrom: (2.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20090221181746-jx37hyuf8ljaj524
Tags: 8.2.0-1ubuntu1
* Tigthen dependencies to 8.2.
* Build-depend on python-central (>= 0.6.11).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/env python
2
 
 
3
 
# Twisted, the Framework of Your Internet
4
 
# Copyright (c) 2001-2004 Twisted Matrix Laboratories.
5
 
# See LICENSE for details.
6
 
 
7
 
 
8
 
### Twisted Preamble
9
 
# This makes sure that users don't have to set up their environment
10
 
# specially in order to run these programs from bin/.
11
 
import sys, os, string
12
 
if string.find(os.path.abspath(sys.argv[0]), os.sep+'Twisted') != -1:
13
 
    sys.path.insert(0, os.path.normpath(os.path.join(os.path.abspath(sys.argv[0]), os.pardir, os.pardir)))
14
 
### end of preamble
15
 
 
16
 
from twisted.scripts import im
17
 
im.run()
18