]> git.donarmstrong.com Git - dak.git/commitdiff
2004-01-04 James Troup <james@nocrew.org> * jenna (write_filelists): correct typo...
authorJames Troup <james@nocrew.org>
Wed, 21 Jan 2004 03:22:23 +0000 (03:22 +0000)
committerJames Troup <james@nocrew.org>
Wed, 21 Jan 2004 03:22:23 +0000 (03:22 +0000)
jenna

diff --git a/jenna b/jenna
index 50bed8fe12fda9883cdfc1e98ff09dac0535a258..e346e69b0c1d891a5e83738110609dab4076682e 100755 (executable)
--- a/jenna
+++ b/jenna
@@ -1,8 +1,8 @@
 #!/usr/bin/env python
 
 # Generate file lists used by apt-ftparchive to generate Packages and Sources files
-# Copyright (C) 2000, 2001, 2002, 2003  James Troup <james@nocrew.org>
-# $Id: jenna,v 1.25 2003-05-02 13:53:57 troup Exp $
+# Copyright (C) 2000, 2001, 2002, 2003, 2004  James Troup <james@nocrew.org>
+# $Id: jenna,v 1.26 2004-01-21 03:22:23 troup Exp $
 
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -288,7 +288,7 @@ def write_filelists(packages, dislocated_files):
         if not Options["Component"]:
             components = Cnf.ValueList("Suite::%s::Components" % (suite));
         else:
-            components = Options["Components"].split();
+            components = Options["Component"].split();
         udeb_components = Cnf.ValueList("Suite::%s::UdebComponents" % (suite));
         udeb_components = udeb_components;
         for component in components:
@@ -417,7 +417,7 @@ def main():
     projectB = pg.connect(Cnf["DB::Name"], Cnf["DB::Host"], int(Cnf["DB::Port"]));
     db_access.init(Cnf, projectB);
     Logger = logging.Logger(Cnf, "jenna");
-    utils.try_with_debug(do_da_do_da);
+    do_da_do_da();
     Logger.close();
 
 #########################################################################################