Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
pfernique committed Dec 27, 2017
1 parent 59cdaa6 commit def0dbd
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 def0dbd

Please sign in to comment.