Skip to content

Commit

Permalink
EXOMERGE: Fix syntax error introduced in last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
gsjaardema committed Nov 29, 2023
1 parent e2d882d commit ef6653d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/seacas/scripts/exomerge3.py
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@ def __getattr__(self, name):
if name.startswith("__"):
raise AttributeError
# get non-special function names
names = [x for x in dir(self.__class__) if !x.startswith("__")]
names = [x for x in dir(self.__class__) if not x.startswith("__")]
# if the name appears to be singular, search for the plural version
if not name.endswith("s"):
trial = name + "s"
Expand Down

0 comments on commit ef6653d

Please sign in to comment.