On Thu, Apr 03, 2008 at 02:34:31PM +0200, Olivier Berger wrote: > Sometimes, revelation will abort at save time with the following error : > AttributeError: 'NoneType' object has no attribute 'replace' > > As seen at http://svn.codepoet.no/revelation/ticket/241, there's a proposed fix which seems to fit.
I provide an attached patch for the Debian package sources, hopeing that it doesn't break anything else. Hope this helps,
diff -u revelation-0.4.11/debian/changelog revelation-0.4.11/debian/changelog --- revelation-0.4.11/debian/changelog +++ revelation-0.4.11/debian/changelog @@ -1,3 +1,9 @@ +revelation (0.4.11-3.1) unstable; urgency=low + + * NMU, fix for #474113 + + -- Olivier Berger <[EMAIL PROTECTED]> Thu, 03 Apr 2008 14:40:35 +0200 + revelation (0.4.11-3) unstable; urgency=low * Updated to Policy version 3.7.3 only in patch2: unchanged: --- revelation-0.4.11.orig/src/lib/entry.py +++ revelation-0.4.11/src/lib/entry.py @@ -370,7 +370,7 @@ symbol = None datatype = None - value = None + value = "" def __init__(self, value = ""): self.value = value

