Your message dated Tue, 08 Sep 2009 00:59:17 +0200
with message-id <[email protected]>
and subject line done
has caused the Debian Bug report #399393,
regarding melanie: crashes because of missing '%'
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
399393: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=399393
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: dak
Version: 1.0-8.1
Tags: patch
melanie crashes with:
Checking reverse dependencies...
Traceback (most recent call last):
File "/usr/bin/melanie", line 535, in ?
main()
File "/usr/bin/melanie", line 447, in main
reverse_depends_check(removals, suites);
File "/usr/bin/melanie", line 165, in reverse_depends_check
what = "%s/%s" (package, component);
TypeError: 'str' object is not callable
as there is a missing '%' on line 165:
if unsat == len(dep):
component = p2c[package];
if component != "main":
- what = "%s/%s" (package, component);
+ what = "%s/%s" % (package, component);
else:
what = "** %s" % (package);
print "%s has an unsatisfied dependency on %s: %s" %
(what, architecture, utils.pp_deps(dep));
Cheers
Luk
--
Luk Claes - http://people.debian.org/~luk - GPG key 1024D/9B7C328D
Fingerprint: D5AF 25FB 316B 53BB 08E7 F999 E544 DE07 9B7C 328D
signature.asc
Description: OpenPGP digital signature
--- End Message ---
--- Begin Message ---
This code path no longer exists in that way.
--
bye, Joerg
< Maulkin> I am a scotsman
--- End Message ---