From 6bf9e774e66495c06bdbf055698ea035223ab26c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Doktor?= Date: Wed, 22 Jun 2016 18:04:25 +0200 Subject: [PATCH] avocado.plugins.tap: Fix the CLI import MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The plugin base import location changed to `avocado.core`. Signed-off-by: Lukáš Doktor --- avocado/plugins/tap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/avocado/plugins/tap.py b/avocado/plugins/tap.py index 85ddc8b2..2bf96c59 100644 --- a/avocado/plugins/tap.py +++ b/avocado/plugins/tap.py @@ -18,7 +18,7 @@ TAP output module. import logging from ..core.result import register_test_result_class, TestResult -from .base import CLI +from avocado.core.plugin_interfaces import CLI class TAPResult(TestResult): -- GitLab