Title: [commits] (morgen) [11353] Fix for bug 6451 -- Simultaneous subscribe / publish leads to repository error
Revision
11353
Author
morgen
Date
2006-08-08 10:12:10 -0700 (Tue, 08 Aug 2006)

Log Message

Fix for bug 6451 -- Simultaneous subscribe / publish leads to repository error

Just moving some misplaced parens. r=vajda

Modified Paths

Diff

Modified: trunk/chandler/repository/item/Values.py (11352 => 11353)

--- trunk/chandler/repository/item/Values.py	2006-08-08 16:42:51 UTC (rev 11352)
+++ trunk/chandler/repository/item/Values.py	2006-08-08 17:12:10 UTC (rev 11353)
@@ -1046,7 +1046,7 @@
                                  dict((key, dict(refList._iterChanges()))
                                       for key, refList in value.iteritems()))
                             changes[name] = \
-                                dict((key, dict(refList._iterHistory(version, newVersion) for key, refList in value.iteritems())))
+                                dict((key, dict(refList._iterHistory(version, newVersion))) for key, refList in value.iteritems())
                         else:
                             newChanges[name] = ('list',
                                                 dict(value._iterChanges()))




_______________________________________________
Commits mailing list
[email protected]
http://lists.osafoundation.org/mailman/listinfo/commits

Reply via email to