Fixed a typo.

master
Fabio Tranchitella 18 years ago
parent 330380784a
commit 9f439cb304

@ -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

@ -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

Loading…
Cancel
Save