From f8288504667fa305e14860d97b2fbe3cb83d6716 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Apr 24 2015 22:51:28 +0000 Subject: tell the scm wrapper to do an absolute import otherwise we hit a circular dep issue and things go wonky Signed-off-by: Dennis Gilmore --- diff --git a/pungi/wrappers/scm.py b/pungi/wrappers/scm.py index 88cf77d..b5f4746 100644 --- a/pungi/wrappers/scm.py +++ b/pungi/wrappers/scm.py @@ -1,3 +1,4 @@ +from __future__ import absolute_import # -*- coding: utf-8 -*- @@ -26,7 +27,6 @@ import kobo.log from kobo.shortcuts import run, force_list from pungi.util import explode_rpm_package, makedirs - class ScmBase(kobo.log.LoggingBase): def __init__(self, logger=None): kobo.log.LoggingBase.__init__(self, logger=logger)