From: Zack Cerza Date: Fri, 18 Nov 2016 18:45:14 +0000 (-0700) Subject: misc: avoid a circular import with .packaging X-Git-Tag: 1.1.0~495^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F988%2Fhead;p=teuthology.git misc: avoid a circular import with .packaging Import DEFAULT_OS_VERSION from .orchestra.opsys, where it is originally defined. Signed-off-by: Zack Cerza --- diff --git a/teuthology/misc.py b/teuthology/misc.py index dd5629c27..54799b0b1 100644 --- a/teuthology/misc.py +++ b/teuthology/misc.py @@ -27,7 +27,7 @@ from teuthology.exceptions import (CommandCrashedError, CommandFailedError, from .orchestra import run from .config import config from .contextutil import safe_while -from .packaging import DEFAULT_OS_VERSION +from .orchestra.opsys import DEFAULT_OS_VERSION log = logging.getLogger(__name__)