Skip to content

Commit

Permalink
fix check typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jchapma committed Dec 5, 2024
1 parent 5495af7 commit c89f321
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib389/lib389/plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -863,7 +863,7 @@ def _lint_member_substring_index(self):
report['fix'] = report['fix'].replace('YOUR_INSTANCE', self._instance.serverid)
report['items'].append(suffix)
report['items'].append(attr)
report['check'] = f'memberof:substring_index'
report['check'] = f'attr:substring_index'
yield report
except:
# No index at all, bad
Expand All @@ -874,7 +874,7 @@ def _lint_member_substring_index(self):
report['fix'] = report['fix'].replace('YOUR_INSTANCE', self._instance.serverid)
report['items'].append(suffix)
report['items'].append(attr)
report['check'] = f'memberof:substring_index'
report['check'] = f'attr:substring_index'
yield report

def get_attr(self):
Expand Down

0 comments on commit c89f321

Please sign in to comment.