Skip to content

Commit

Permalink
Fixed another add-in path issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
eguvep committed Jul 30, 2021
1 parent 571102d commit 838b1d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openpivgui/AddInHandler.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def init_add_ins(gui):
# add-ins and reading out the variables of the class. These are then
# appended to the parameter object.
for add_in in add_ins_to_be_included:
add_in_file = importlib.import_module("AddIns." + add_in)
add_in_file = importlib.import_module("openpivgui.AddIns." + add_in)
add_in_instance = getattr(add_in_file, add_in)(gui)
imported_add_ins.update({add_in: add_in_instance.get_variables()})
parameters.add_parameters(add_in_instance.get_variables())
Expand Down

0 comments on commit 838b1d4

Please sign in to comment.