mirror of
https://git.launchpad.net/~ubuntu-release/britney/+git/britney2-ubuntu
synced 2025-05-06 08:01:41 +00:00
Fixed a typo.
This commit is contained in:
parent
330380784a
commit
9f439cb304
1
TODO
1
TODO
@ -1,5 +1,4 @@
|
|||||||
# Unsatisfable dependencies are not valid candidates, please drop them from upgrade_me (waiting reply from aba)
|
# 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 old libraries (introducing a new operation: remove single binary)
|
||||||
# Add support for udeb
|
# Add support for udeb
|
||||||
|
@ -756,7 +756,7 @@ class Britney:
|
|||||||
|
|
||||||
self.__log("Writing new %s control files to %s" % (suite, basedir))
|
self.__log("Writing new %s control files to %s" % (suite, basedir))
|
||||||
for arch in self.options.architectures:
|
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')
|
f = open(filename, 'w')
|
||||||
binaries = self.binaries[suite][arch][0]
|
binaries = self.binaries[suite][arch][0]
|
||||||
for pkg in binaries:
|
for pkg in binaries:
|
||||||
@ -786,7 +786,7 @@ class Britney:
|
|||||||
f.write(output + "\n")
|
f.write(output + "\n")
|
||||||
f.close()
|
f.close()
|
||||||
|
|
||||||
filename = os.path.join(basedir, 'Sources.new')
|
filename = os.path.join(basedir, 'Sources')
|
||||||
f = open(filename, 'w')
|
f = open(filename, 'w')
|
||||||
for src in sources:
|
for src in sources:
|
||||||
output = "Package: %s\n" % src
|
output = "Package: %s\n" % src
|
||||||
|
Loading…
x
Reference in New Issue
Block a user