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 2e782fb commit 14e9253
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/py/autowig/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,10 @@
from ._parser import parser
if 'clanglite' in parser:
parser.plugin = 'clanglite'
else:
elif 'libclang' in parser:
parser.plugin = 'libclang'
else:
raise NotImplementedError("no parser implemented")

from ._documenter import documenter
documenter.plugin = 'doxygen2sphinx'
Expand All @@ -48,4 +50,4 @@
boost_python_decorator.proxy = 'default'

from ._generator import generator
generator.plugin = 'boost_python'
generator.plugin = 'boost_python'

0 comments on commit 14e9253

Please sign in to comment.