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

« back to all changes in this revision

Viewing changes to bin/twistd

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2007-01-17 14:52:35 UTC
  • mfrom: (1.1.5 upstream) (2.1.2 etch)
  • Revision ID: james.westby@ubuntu.com-20070117145235-btmig6qfmqfen0om
Tags: 2.5.0-0ubuntu1
New upstream version, compatible with python2.5.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
    sys.path.insert(0, os.path.abspath(os.getcwd()))
17
17
### end of preamble
18
18
 
19
 
from twisted.python.runtime import platformType
20
 
if platformType == "win32":
21
 
    from twisted.scripts._twistw import run
22
 
else:
23
 
    from twisted.scripts.twistd import run
24
19
 
 
20
from twisted.scripts.twistd import run
25
21
run()