Repository: qpid-proton Updated Branches: refs/heads/master 3f64ad799 -> a3b8bb180
NO-JIRA: Add missing import for 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/a3b8bb18 Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/a3b8bb18 Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/a3b8bb18 Branch: refs/heads/master Commit: a3b8bb1805f5ffc24c487fd039ce47797a458437 Parents: 3f64ad7 Author: Alan Conway <[email protected]> Authored: Wed Mar 11 11:17:23 2015 -0400 Committer: Alan Conway <[email protected]> Committed: Wed Mar 11 11:17:23 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/a3b8bb18/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]
