Skip to content

Commit

Permalink
Fixed unknown_settings bug
Browse files Browse the repository at this point in the history
  • Loading branch information
MattBurn committed Jun 18, 2020
1 parent c47fba1 commit 251dd75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ICHOR.py
Original file line number Diff line number Diff line change
Expand Up @@ -896,7 +896,7 @@ def init(self):
def set(self, name, value):
name = name.upper()
if name not in self.global_variables:
_unknown_settings.append(name)
ProblemFinder.unknown_settings.append(name)
else:
setattr(self, name, value)

Expand Down

0 comments on commit 251dd75

Please sign in to comment.