From e83ebfc853ede37a02c3bf6f09d2786bbef7080d Mon Sep 17 00:00:00 2001 From: "Yaakov M. Nemoy" Date: Thu, 15 Jan 2009 18:46:14 -0500 Subject: Random bugfixes makes it work gets rid of _type madness fixes imports fixes random function signatures inserts a bloody stupid easter egg hack floats on a wooden raft --- modules/sourceball.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'modules/sourceball.py') diff --git a/modules/sourceball.py b/modules/sourceball.py index 60fee9f..a84a110 100644 --- a/modules/sourceball.py +++ b/modules/sourceball.py @@ -26,15 +26,14 @@ from subprocess import Popen, PIPE from tempfile import mkdtemp from base.base import log +from base.dirfactory import DirFactory from base.exceptions import ExecutionException from base.util import pwd, copy, move -from modules.dirfactory import DirFactory from modules.packagesource import PackageSource class SourceBall(PackageSource): '''a type of package that is a single sourceball, a spec file, and some patches''' - _type = 'sourceball' def __init__(self, name=None, tarball=''): if tarball: tmp_dir = mkdtemp() -- cgit