[Nym3-devel] error log

Jean-René Reinhard jean-rene.reinhard at m4x.org
Mon May 28 12:02:30 CEST 2007


Le Wed, May 16, 2007 at 10:54:57PM -0400, aelber at 207-237-10-120.c3-0.nyw-ubr3.nyr-nyw.ny.cable.rcn.com écrivait:
> nymbaron export -n cl -o ~/new_message1 mbox:0  
> You need to provide your passphrase to unlock your keyring
> Passphrase: 
> Traceback (most recent call last):
>   File "/usr/bin/nymbaron", line 6, in ?
>     nymbaron.Client.Main.main(sys.argv)
>   File "/usr/lib/python2.4/site-packages/nymbaron/Client/Main.py", line 
> 1025, in main
>     export(ui, config, options.nickname, options.output, args)
>   File "/usr/lib/python2.4/site-packages/nymbaron/Client/Main.py", line 719, 
> in export
>     ui.display("exporting %s", mid)
> TypeError: display() takes exactly 2 arguments (3 given)
> 
> 
> I'm wondering if I'm doing something wrong here (doesn't look like it) or if 
> there's some kind of configuration problem, or nymbaron's just too old to 
> use on a current system...

This is a minor bug present in our latest release. It has long been wiped out of
our development svn tree.

If you want a quick fix just replace the incriminated line: 
ui.display("exporting %s", mid) (line 719 of Client/Main.py)
by:
ui.display("exporting %s" % binascii.hexlify(mid))

A better solution would be to use our latest development tree.
You can access it via subversion and install it on your system :

$cd /tmp
$svn co http://svn.conuropsis.org/nym3/trunk/
$cd trunk
$python setup.py install (as root)

This is a development version but should work fine. If you come across bugs, do
not hesitate to report them so that we can fix them asap. A new stable release
should be available soon after Laurent gets proper network access.

Cheers,
Jean-René


More information about the Nym3-devel mailing list