On Mon, Aug 30, 2010 at 08:18:04PM +0000, Debian Bug Tracking System wrote: > If you wish to submit further information on this problem, please > send it to 594...@bugs.debian.org.
Sorry, I forgot to attach the patch. Also note that I verified that this problem appears to exist in the version in unstable, but did not actually test it. Cheers, Dominic. -- Dominic Hargreaves | http://www.larted.org.uk/~dom/ PGP key 5178E2A5 from the.earth.li (keyserver,web,email)
diff -urN /usr/share/python-support/pwman3/pwman/ui/cli.py python/pwman/ui/cli.py --- /usr/share/python-support/pwman3/pwman/ui/cli.py 2008-06-02 09:39:34.000000000 +0100 +++ python/pwman/ui/cli.py 2010-08-30 21:11:33.000000000 +0100 @@ -354,8 +354,8 @@ first=False tagstring += t.get_name() name = "%...@%s" % (n.get_username(), n.get_url()) - if len(name) > 30: - name = name[:27] + "..." + if len(name) > 60: + name = name[:57] + "..." if len(tagstring) > 20: tagstring = tagstring[:17] + "..."