Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/StatisKit/AutoWIG
Browse files Browse the repository at this point in the history
  • Loading branch information
pfernique committed Jan 10, 2018
2 parents 0939247 + def0dbd commit 426f79d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/py/autowig/_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
## permissions and limitations under the License. ##

import os
import warnings

from .plugin import PluginManager

Expand Down Expand Up @@ -155,8 +156,7 @@ def cleaning(asg):
if isinstance(node, (ClassTemplateSpecializationProxy, ClassTemplatePartialSpecializationProxy)):
asg._specialization_edges[node.specialize._node].remove(node._node)
except Exception as e:
print node._node
raise e
warnings.warn("Cannot find the node '" + node._node + '"', UserWarning)

nodes = set([node._node for node in nodes])

Expand Down

0 comments on commit 426f79d

Please sign in to comment.