__main__.py 353 B

1234567891011121314
  1. # Copyright (c) Twisted Matrix Laboratories.
  2. # See LICENSE for details.
  3. # Make the twisted module executable with the default behaviour of
  4. # running twist.
  5. # This is not a docstring to avoid changing the string output of twist.
  6. import sys
  7. if __name__ == "__main__":
  8. from twisted.application.twist._twist import Twist
  9. sys.exit(Twist.main())