From 13d6ed35ee6f8f1d404f8a73346ed4bc25fa3dd7 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Tue, 25 Mar 2008 17:14:11 -0400 Subject: [PATCH] Correct the api call to comps. --- src/pypungi/gather.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pypungi/gather.py b/src/pypungi/gather.py index 622f91e3..bfd6f2a1 100755 --- a/src/pypungi/gather.py +++ b/src/pypungi/gather.py @@ -379,7 +379,7 @@ class Gather(pypungi.PungiBase): ourcomps = open(ourcompspath, 'w') - ourcomps.write(self.ayum.comps.Comps.xml()) + ourcomps.write(self.ayum.comps.xml()) ourcomps.close()