From 9f439cb3044a83d760e979227a72d12c600b58f4 Mon Sep 17 00:00:00 2001 From: Fabio Tranchitella Date: Thu, 3 Aug 2006 11:42:23 +0000 Subject: [PATCH] Fixed a typo. --- TODO | 1 - britney.py | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/TODO b/TODO index 963d6fc..51cdb7f 100644 --- a/TODO +++ b/TODO @@ -1,5 +1,4 @@ # Unsatisfable dependencies are not valid candidates, please drop them from upgrade_me (waiting reply from aba) -# Add support for writing out the Packages_* and Sources files. # Add support for old libraries (introducing a new operation: remove single binary) # Add support for udeb diff --git a/britney.py b/britney.py index 5d1d025..794595d 100644 --- a/britney.py +++ b/britney.py @@ -756,7 +756,7 @@ class Britney: self.__log("Writing new %s control files to %s" % (suite, basedir)) for arch in self.options.architectures: - filename = os.path.join(basedir, 'Packages_%s.new' % arch) + filename = os.path.join(basedir, 'Packages_%s' % arch) f = open(filename, 'w') binaries = self.binaries[suite][arch][0] for pkg in binaries: @@ -786,7 +786,7 @@ class Britney: f.write(output + "\n") f.close() - filename = os.path.join(basedir, 'Sources.new') + filename = os.path.join(basedir, 'Sources') f = open(filename, 'w') for src in sources: output = "Package: %s\n" % src