From efbac415903f22244634479b54873fad510489ba Mon Sep 17 00:00:00 2001 From: Jan Kiszka Date: Fri, 24 Aug 2018 19:17:55 +0200 Subject: [PATCH] shell: Unify import pattern We do not spell out kas. elsewhere, only here so far. Unify that. Signed-off-by: Jan Kiszka --- kas/shell.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/kas/shell.py b/kas/shell.py index 8d2f297..d74d2a5 100644 --- a/kas/shell.py +++ b/kas/shell.py @@ -26,11 +26,11 @@ import subprocess import os -from kas.libkas import kasplugin -from kas.context import Context -from kas.libcmds import (Macro, Command, SetupDir, SetupEnviron, - WriteBBConfig, SetupHome, ReposApplyPatches, - CleanupSSHAgent, SetupSSHAgent, SetupRepos) +from .libkas import kasplugin +from .context import Context +from .libcmds import (Macro, Command, SetupDir, SetupEnviron, + WriteBBConfig, SetupHome, ReposApplyPatches, + CleanupSSHAgent, SetupSSHAgent, SetupRepos) __license__ = 'MIT' __copyright__ = 'Copyright (c) Siemens AG, 2017'