From 645bbb0a95dfd2f89304b7d45aff119a5f5995ff Mon Sep 17 00:00:00 2001 From: "Jens W. Klein" Date: Mon, 26 Aug 2013 14:49:26 +0200 Subject: [PATCH] typo: renamed 'annotions' to 'annotations' --- plone/app/discussion/conversation.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plone/app/discussion/conversation.py b/plone/app/discussion/conversation.py index 4ec6c75..ba27c0f 100644 --- a/plone/app/discussion/conversation.py +++ b/plone/app/discussion/conversation.py @@ -306,12 +306,12 @@ def conversationAdapterFactory(content): """ Adapter factory to fetch the default conversation from annotations. """ - annotions = IAnnotations(content) - if not ANNOTATION_KEY in annotions: + annotations = IAnnotations(content) + if not ANNOTATION_KEY in annotations: conversation = Conversation() conversation.__parent__ = aq_base(content) else: - conversation = annotions[ANNOTATION_KEY] + conversation = annotations[ANNOTATION_KEY] return conversation.__of__(content)