Skip to content

Commit

Permalink
Fix call to get_item_names
Browse files Browse the repository at this point in the history
  • Loading branch information
oSquat authored Oct 4, 2024
1 parent 5e3c353 commit 1199662
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/moin/macros/ItemList.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def macro(self, content, arguments, page_url, alternative):
return fail_message(err_msg, alternative)

# process subitems
children = self.get_item_names(item, startswith=startswith, skiptag=skiptag, tag=tag)
children = get_item_names(item, startswith=startswith, skiptag=skiptag, tag=tag)
if regex:
try:
regex_re = re.compile(regex, re.IGNORECASE)
Expand Down

0 comments on commit 1199662

Please sign in to comment.