Repository: qpid-proton Updated Branches: refs/heads/0.9 59efe4f6b -> ea01c014f
PROTON-836: Missing import SSLUnavailable in reactor.py. Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/ea01c014 Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/ea01c014 Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/ea01c014 Branch: refs/heads/0.9 Commit: ea01c014fedd8dff134131f93b7d957aabac70ec Parents: 59efe4f Author: Alan Conway <[email protected]> Authored: Wed Mar 11 11:17:23 2015 -0400 Committer: Alan Conway <[email protected]> Committed: Wed Mar 11 11:30:04 2015 -0400 ---------------------------------------------------------------------- proton-c/bindings/python/proton/reactor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/ea01c014/proton-c/bindings/python/proton/reactor.py ---------------------------------------------------------------------- diff --git a/proton-c/bindings/python/proton/reactor.py b/proton-c/bindings/python/proton/reactor.py index 4fda15c..41b7372 100644 --- a/proton-c/bindings/python/proton/reactor.py +++ b/proton-c/bindings/python/proton/reactor.py @@ -20,7 +20,7 @@ import logging, os, Queue, socket, time, types from heapq import heappush, heappop, nsmallest from proton import Collector, Connection, ConnectionException, Delivery, Described, dispatch from proton import Endpoint, Event, EventBase, EventType, generate_uuid, Handler, Link, Message -from proton import ProtonException, PN_ACCEPTED, PN_PYREF, SASL, Session, SSL, SSLDomain, symbol +from proton import ProtonException, PN_ACCEPTED, PN_PYREF, SASL, Session, SSL, SSLDomain, SSLUnavailable, symbol from proton import Terminus, Timeout, Transport, TransportException, ulong, Url from select import select from proton.handlers import OutgoingMessageHandler --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
