Skip to content

Commit

Permalink
fix for #228
Browse files Browse the repository at this point in the history
  • Loading branch information
meisnate12 committed May 12, 2021
1 parent e8ea0cc commit c33852d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -707,7 +707,7 @@ def cant_interact(attr1, attr2, fail=False):
elif str(method_data).lower() not in options:
logger.error(f"Metadata Error: {method_data} {method_name} attribute invalid")
else:
self.item_details[method_name] = options[str(method_data).lower()]
self.item_details[method_name] = str(method_data).lower()
elif method_name in boolean_details:
self.details[method_name] = util.get_bool(method_name, method_data)
elif method_name in all_details:
Expand Down

0 comments on commit c33852d

Please sign in to comment.