diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /extra/twisted/4771.diff |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/twisted/4771.diff')
-rw-r--r-- | extra/twisted/4771.diff | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/extra/twisted/4771.diff b/extra/twisted/4771.diff new file mode 100644 index 000000000..4e36f2632 --- /dev/null +++ b/extra/twisted/4771.diff @@ -0,0 +1,22 @@ +Index: twisted/words/protocols/jabber/jstrports.py +=================================================================== +--- twisted/words/protocols/jabber/jstrports.py (revision 30346) ++++ twisted/words/protocols/jabber/jstrports.py (working copy) +@@ -6,7 +6,7 @@ + """ A temporary placeholder for client-capable strports, until we + sufficient use cases get identified """ + +-from twisted.application import strports ++from twisted.internet.endpoints import _parse + + def _parseTCPSSL(factory, domain, port): + """ For the moment, parse TCP or SSL connections the same """ +@@ -22,7 +22,7 @@ + + + def parse(description, factory): +- args, kw = strports._parse(description) ++ args, kw = _parse(description) + return (args[0].upper(),) + _funcs[args[0]](factory, *args[1:], **kw) + + def client(description, factory): |