Repository: qpid-proton Updated Branches: refs/heads/master f066bd520 -> 197d83f10
PROTON-1111: Fix warnings during make doc Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/197d83f1 Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/197d83f1 Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/197d83f1 Branch: refs/heads/master Commit: 197d83f10afbd6c668e38548c6df8d556f6a2860 Parents: f066bd5 Author: Justin Ross <[email protected]> Authored: Wed Jan 27 06:35:07 2016 -0800 Committer: Justin Ross <[email protected]> Committed: Wed Jan 27 06:35:07 2016 -0800 ---------------------------------------------------------------------- proton-c/bindings/python/CMakeLists.txt | 2 +- proton-c/bindings/python/proton/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/197d83f1/proton-c/bindings/python/CMakeLists.txt ---------------------------------------------------------------------- diff --git a/proton-c/bindings/python/CMakeLists.txt b/proton-c/bindings/python/CMakeLists.txt index 157a080..f2ec640 100644 --- a/proton-c/bindings/python/CMakeLists.txt +++ b/proton-c/bindings/python/CMakeLists.txt @@ -88,7 +88,7 @@ if (EPYDOC_EXE) PYTHONPATH=${CMAKE_CURRENT_BINARY_DIR}:${CMAKE_CURRENT_SOURCE_DIR} ${EPYDOC_EXE} -v --no-private --html -o ${CMAKE_CURRENT_BINARY_DIR}/html ${PY_DOC_FILES} - DEPENDENCIES ${SWIG_MODULE_${cproton}_REAL_NAME}) + DEPENDS ${SWIG_MODULE_${cproton}_REAL_NAME}) add_dependencies(docs docs-py) install(DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/html/" DESTINATION "${PROTON_SHARE}/docs/api-py" http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/197d83f1/proton-c/bindings/python/proton/__init__.py ---------------------------------------------------------------------- diff --git a/proton-c/bindings/python/proton/__init__.py b/proton-c/bindings/python/proton/__init__.py index 9dfd9a6..16d7a74 100644 --- a/proton-c/bindings/python/proton/__init__.py +++ b/proton-c/bindings/python/proton/__init__.py @@ -33,7 +33,7 @@ from __future__ import absolute_import from cproton import * from .wrapper import Wrapper -from . import _compat +from proton import _compat import weakref, socket, sys, threading --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
