[Python-checkins] r61321 - tracker/instances/python-dev/detectors/messagesummary.py

martin.v.loewis python-checkins at python.org
Sun Mar 9 09:46:20 CET 2008


Author: martin.v.loewis
Date: Sun Mar  9 09:46:20 2008
New Revision: 61321

Modified:
   tracker/instances/python-dev/detectors/messagesummary.py
Log:
Perform 1.3.2 to 1.4.2 migration.


Modified: tracker/instances/python-dev/detectors/messagesummary.py
==============================================================================
--- tracker/instances/python-dev/detectors/messagesummary.py	(original)
+++ tracker/instances/python-dev/detectors/messagesummary.py	Sun Mar  9 09:46:20 2008
@@ -8,7 +8,7 @@
     if newvalues.has_key('summary') or not newvalues.has_key('content'):
         return
 
-    summary, content = parseContent(newvalues['content'], 1, 1)
+    summary, content = parseContent(newvalues['content'], config=db.config)
     newvalues['summary'] = summary
 
 


More information about the Python-checkins mailing list