Skip to content

Commit

Permalink
fix loading of models containing user-defined scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy committed Dec 2, 2016
1 parent b3742fe commit 8dc7799
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion python/plugins/processing/modeler/ModelerAlgorithm.py
Expand Up @@ -566,7 +566,10 @@ def fromJson(s):
def fromdict(d):
try:
fullClassName = d["class"]
tokens = fullClassName.split(".")
if isinstance(fullClassName, basestring):
tokens = fullClassName.split(".")
else:
tokens = fullClassName.__class__.__name__.split(".")
className = tokens[-1]
moduleName = ".".join(tokens[:-1])
values = d["values"]
Expand Down

0 comments on commit 8dc7799

Please sign in to comment.