id summary reporter owner description type status priority component severity resolution keywords cc release 6465 "Creating forum with 0.11 gives ""TypeError: 'module' object is not callable"". working OK on >= 0.11.1" François Granade Radek Bartoň "This is working correctly with 0.11.1 and later versions - so I suppose it shouldn't be fixed, but since I had the problem, I report it Creating a forum failed with this error: {{{ NotifyEmail.notify(self, id, subject) File ""/usr/lib/python2.4/site-packages/Trac-0.11-py2.4.egg/trac/notification.py"", line 241, in notify Notify.notify(self, resid) File ""/usr/lib/python2.4/site-packages/Trac-0.11-py2.4.egg/trac/notification.py"", line 130, in notify self.send(torcpts, ccrcpts) File ""/home/francoisg/discussionplugin/0.11/tracdiscussion/notification.py"", line 131, in send header['Message-ID'] = self.get_forum_email_id(self.forum['id']) File ""/home/francoisg/discussionplugin/0.11/tracdiscussion/notification.py"", line 165, in get_forum_email_id digest = md5(s).hexdigest() }}} Workaround was to edit {{{tracdiscussion/notification.py}}} and add on line 19 the following code: {{{ try: md5() except TypeError: md5 = md5.new }}} Of course, I should upgrade :)..." defect closed lowest DiscussionPlugin blocker wontfix 0.11