From f5d3bb0346dbba629bb3c3a09bea63a5454ebc3c Mon Sep 17 00:00:00 2001 From: "wu.zhihui" Date: Mon, 14 Nov 2016 16:20:43 +0800 Subject: bugfix: miss __init__.py under module qtip Due to adjust directory, __init__.py is missed for module qtip. And modify related module calls. JIRA: QTIP-161 Change-Id: I20fb366d664155e7d5ad2ac1c6241a5394afd096 Signed-off-by: wu.zhihui --- qtip.py | 2 +- qtip/__init__.py | 0 2 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 qtip/__init__.py diff --git a/qtip.py b/qtip.py index a2c26eda..66ff674f 100644 --- a/qtip.py +++ b/qtip.py @@ -7,7 +7,7 @@ # which accompanies this distribution, and is available at # http://www.apache.org/licenses/LICENSE-2.0 ############################################################################## -from utils.cli import Cli +from qtip.utils.cli import Cli def main(): diff --git a/qtip/__init__.py b/qtip/__init__.py new file mode 100644 index 00000000..e69de29b -- cgit 1.2.3-korg