Skip to content

Commit a5b942e

Browse files
author
Richard Jones
committed
merge maint-0-7
1 parent 9d37c1d commit a5b942e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ Fixed:
6262
- ensure multilink ordering in RDBMS backends (thanks Marcus Priesch, sf
6363
bug 950963)
6464
- always honor indexme property on Strings (sf patch 1063711)
65+
- make hyperdb value parsing errors readable in mailgw errors
6566

6667

6768
2004-10-15 0.7.8

roundup/mailgw.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ class node. Any parts of other types are each stored in separate files
7272
an exception, the original message is bounced back to the sender with the
7373
explanatory message given in the exception.
7474
75-
$Id: mailgw.py,v 1.158 2004-11-12 04:07:03 richard Exp $
75+
$Id: mailgw.py,v 1.159 2004-11-17 22:16:29 richard Exp $
7676
"""
7777
__docformat__ = 'restructuredtext'
7878

@@ -970,7 +970,7 @@ def setPropArrayFromString(self, cl, propString, nodeid=None):
970970
props[propname] = hyperdb.rawToHyperdb(self.db, cl, nodeid,
971971
propname, value)
972972
except hyperdb.HyperdbValueError, message:
973-
errors.append(message)
973+
errors.append(str(message))
974974
return errors, props
975975

976976

0 commit comments

Comments
 (0)