From 7feced419c0f2462ce629fc1e398b26402d0c275 Mon Sep 17 00:00:00 2001 From: ericxiett Date: Thu, 24 Nov 2016 01:34:51 +0800 Subject: [PATCH] Fix 'ImportError' when docbuild. There is not module 'messaging.utils' in 'watcher.common' but module 'synchronization' instead. Change-Id: If2d585a4f416614cbe91e4ef61fc7473508d38af Closes-Bug: #1643862 --- watcher/common/observable.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/watcher/common/observable.py b/watcher/common/observable.py index 25233d9a8..3f08185ce 100644 --- a/watcher/common/observable.py +++ b/watcher/common/observable.py @@ -14,7 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -from watcher.common.messaging.utils import synchronization +from watcher.common import synchronization class Observable(synchronization.Synchronization):