Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 448992 | Differences between
and this patch

Collapse All | Expand All

(-)a/giscanner/annotationparser.py (-1 / +5 lines)
Lines 538-544 class AnnotationParser(object): Link Here
538
        comment_blocks = {}
538
        comment_blocks = {}
539
539
540
        for comment in comments:
540
        for comment in comments:
541
            comment_block = self.parse_comment_block(comment)
541
            try:
542
                comment_block = self.parse_comment_block(comment)
543
            except Exception, exc:
544
	        print "%s:%s %s" % (comment[1], comment[2], exc)
545
                continue
542
546
543
            if comment_block is not None:
547
            if comment_block is not None:
544
                if comment_block.name in comment_blocks:
548
                if comment_block.name in comment_blocks:

Return to bug 448992