Skip to content

Commit

Permalink
Fix loading of plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
david415 committed Jun 1, 2016
1 parent ba6ed17 commit d76aa4b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/twisted/plugins/load_transport_plugins.py
@@ -1,3 +1,3 @@
import foolscap
tcpTransportPlugin = foolscap.DefaultTCP()
socksTransportPlugin = foolscap.SOCKS5()
from foolscap.connection_plugins import DefaultTCP, SOCKS5
tcpTransportPlugin = DefaultTCP()
socksTransportPlugin = SOCKS5()

0 comments on commit d76aa4b

Please sign in to comment.