- Revision
- 15338
- Author
- grant
- Date
- 2007-09-17 11:44:22 -0700 (Mon, 17 Sep 2007)
Log Message
Fix Bug 10543 (r=jeffrey) Attribute Error dropping .eml into Chandler (AttributeError: 'tuple' object has no attribute 'itsItem')
- An API change (messageTextToKind) wasn't propagated to all its uses.
- An API change (messageTextToKind) wasn't propagated to all its uses.
Modified Paths
Diff
Modified: trunk/chandler/parcels/osaf/sharing/ChooseFormat.py (15337 => 15338)
--- trunk/chandler/parcels/osaf/sharing/ChooseFormat.py 2007-09-17 17:30:28 UTC (rev 15337) +++ trunk/chandler/parcels/osaf/sharing/ChooseFormat.py 2007-09-17 18:44:22 UTC (rev 15338) @@ -82,7 +82,7 @@ return importEmail(text, view, coll, selectedCollection) def importEmail(text, view, coll=None, selectedCollection=False): - msg = osaf.mail.message.messageTextToKind(view, text) + status, msg = osaf.mail.message.messageTextToKind(view, text) if selectedCollection or coll is None: coll = Block.findBlockByName("MainView").getSidebarSelectedCollection() if msg is not None:
_______________________________________________ Commits mailing list [email protected] http://lists.osafoundation.org/mailman/listinfo/commits
