From 59330dfcf90ff8f93b83cebc0af909aa98e5a6a1 Mon Sep 17 00:00:00 2001 From: Lucas Meneghel Rodrigues Date: Tue, 22 Jul 2014 11:48:24 -0300 Subject: [PATCH] avocado.utils: Straighten up internal imports It is nice to be able to refer to modules using the dot notation. This fixes some missing imports in the avocado.utils module, as well as it removes unused ones. Signed-off-by: Lucas Meneghel Rodrigues --- avocado/utils/__init__.py | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/avocado/utils/__init__.py b/avocado/utils/__init__.py index 02b86bda..fd684f8b 100644 --- a/avocado/utils/__init__.py +++ b/avocado/utils/__init__.py @@ -12,9 +12,14 @@ # Copyright: Red Hat Inc. 2013-2014 # Author: Lucas Meneghel Rodrigues -import logging -import random -import string +import archive +import build +import crypto import download -import process import io +import memory +import network +import params +import process +import remote +import virt -- GitLab