Skip to content

Commit

Permalink
Fix typo in SvMacroInterpreter class (#4506)
Browse files Browse the repository at this point in the history
Fix interpretter->interpreter

thanks :)
  • Loading branch information
luzpaz authored Jun 3, 2022
1 parent 756efd2 commit fa455c1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion utils/sv_extra_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ def execute(self, context):
if self.my_enum.isnumeric():
macro_bl_idname = self.bl_idname_from_bl_label(self)
DefaultMacros.ensure_nodetree(self, context)
bpy.ops.node.sv_macro_interpretter(macro_bl_idname=macro_bl_idname)
bpy.ops.node.sv_macro_interpreter(macro_bl_idname=macro_bl_idname)
else:
macro_reference = macros.get(self.my_enum)

Expand Down
6 changes: 3 additions & 3 deletions utils/sv_macro_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ def deform_args(**args):
return [(varname, unsorted_dict[varname]) for varname in results]


class SvMacroInterpretter(bpy.types.Operator):
class SvMacroInterpreter(bpy.types.Operator):
""" Launch menu item as a macro """
bl_idname = "node.sv_macro_interpretter"
bl_idname = "node.sv_macro_interpreter"
bl_label = "Sverchok check for new minor version"
bl_options = {'REGISTER'}

Expand Down Expand Up @@ -82,7 +82,7 @@ def execute(self, context):
return {'FINISHED'}


classes = (SvMacroInterpretter,)
classes = (SvMacroInterpreter,)


def register():
Expand Down

0 comments on commit fa455c1

Please sign in to comment.