From 3b955cc823559d501bc1b9c7140539a22fc3d03b Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Fri, 13 Jun 2008 13:47:31 -0400 Subject: [PATCH] Fix some typos and handle the fact that baseurl is a list, where as mirrorlist isn't. --- src/pypungi/__init__.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/pypungi/__init__.py b/src/pypungi/__init__.py index 8bb9341a..bd50e2e3 100644 --- a/src/pypungi/__init__.py +++ b/src/pypungi/__init__.py @@ -178,11 +178,11 @@ class Pungi(pypungi.PungiBase): # add excludes and such here when pykickstart gets them if repo.mirrorlist: thisrepo.mirrorlist = yum.parser.varReplace(repo.mirrorlist, self.ayum.conf.yumvar) - self.mirrorlists.extend('thisrepo.mirrorlist') + self.mirrorlists.append(thisrepo.mirrorlist) self.logger.info('Mirrorlist for repo %s is %s' % (thisrepo.name, thisrepo.mirrorlist)) else: thisrepo.baseurl = yum.parser.varReplace(repo.baseurl, self.ayum.conf.yumvar) - self.repos.extend('thisrepo.baseurl') + self.repos.extend(thisrepo.baseurl) self.logger.info('URL for repo %s is %s' % (thisrepo.name, thisrepo.baseurl)) thisrepo.basecachedir = self.ayum.conf.cachedir thisrepo.enablegroups = True @@ -584,12 +584,12 @@ class Pungi(pypungi.PungiBase): buildinstall.append('--bugurl') buildinstall.append(self.config.get('default', 'bugurl')) - buildinstall.append'--output') + buildinstall.append('--output') buildinstall.append(self.topdir) for mirrorlist in self.mirrorlists: buildinstall.append('--mirrorlist') - buildinstall.append(mirorrlist) + buildinstall.append(mirrorlist) buildinstall.append(self.topdir)