Skip to content

Commit

Permalink
Update __init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
pfernique committed Sep 14, 2017
1 parent 14e9253 commit 776d7a5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/py/autowig/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
"""
"""

import warnings

from .asg import AbstractSemanticGraph, visitor
visitor.plugin = 'all'

Expand All @@ -26,7 +28,7 @@
elif 'libclang' in parser:
parser.plugin = 'libclang'
else:
raise NotImplementedError("no parser implemented")
warnings.warn("no parser implemented", RuntimeWarning)

from ._documenter import documenter
documenter.plugin = 'doxygen2sphinx'
Expand Down

0 comments on commit 776d7a5

Please sign in to comment.