def _extract_summary_keywords(self):
        '''
        produces the list of keywords from the issue summary as reported by the reporter
        '''
        self.text = self.comment_filter._get_issue_summary()

        print '--------------------------------------------------Text------------------------------------------------------'
        print self.text
        print '------------------------------------------------------------------------------------------------------------------'

        return KeywordExtractor._extract_keywords(self, self.text)
 def __init__(self, comment_filter):
     KeywordExtractor.__init__(self)
     self.comment_filter = comment_filter