Repository: qpid-proton Updated Branches: refs/heads/master c6499b687 -> 898cc0a7d
NO-JIRA: fix python3 incompatible syntax Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/898cc0a7 Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/898cc0a7 Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/898cc0a7 Branch: refs/heads/master Commit: 898cc0a7dd03d4b4cc2de0a481060d3939189c01 Parents: c6499b6 Author: Ken Giusti <[email protected]> Authored: Tue Jul 7 09:12:26 2015 -0400 Committer: Ken Giusti <[email protected]> Committed: Tue Jul 7 09:12:26 2015 -0400 ---------------------------------------------------------------------- tests/python/proton_tests/reactor_interop.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/898cc0a7/tests/python/proton_tests/reactor_interop.py ---------------------------------------------------------------------- diff --git a/tests/python/proton_tests/reactor_interop.py b/tests/python/proton_tests/reactor_interop.py index 56a284f..f95d8c2 100644 --- a/tests/python/proton_tests/reactor_interop.py +++ b/tests/python/proton_tests/reactor_interop.py @@ -17,8 +17,9 @@ # specific language governing permissions and limitations # under the License. # +from __future__ import absolute_import -from common import Test, free_tcp_port +from .common import Test, free_tcp_port from proton import Message from proton.handlers import CHandshaker, CFlowController from proton.reactor import Reactor --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
