Mercurial > p > roundup > code
diff roundup/mailgw.py @ 103:381016730332
Fixed some non-string node ids.
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Sat, 28 Jul 2001 00:34:34 +0000 |
| parents | c7c14960f413 |
| children | 19686b60e410 |
line wrap: on
line diff
--- a/roundup/mailgw.py Sat Jul 28 00:31:10 2001 +0000 +++ b/roundup/mailgw.py Sat Jul 28 00:34:34 2001 +0000 @@ -44,7 +44,7 @@ an exception, the original message is bounced back to the sender with the explanatory message given in the exception. -$Id: mailgw.py,v 1.2 2001-07-22 12:09:32 richard Exp $ +$Id: mailgw.py,v 1.3 2001-07-28 00:34:34 richard Exp $ ''' @@ -252,11 +252,11 @@ date=date.Date('.'), summary=summary, content=content, files=files) if not props.has_key('assignedto'): - props['assignedto'] = 1 # "admin" + props['assignedto'] = '1' # "admin" if not props.has_key('priority'): - props['priority'] = 1 # "bug-fatal" + props['priority'] = '1' # "bug-fatal" if not props.has_key('status'): - props['status'] = 1 # "unread" + props['status'] = '1' # "unread" if not props.has_key('title'): props['title'] = title props['messages'] = [message_id] @@ -267,4 +267,7 @@ # # $Log: not supported by cvs2svn $ +# Revision 1.2 2001/07/22 12:09:32 richard +# Final commit of Grande Splite # +#
