Skip to content

Commit

Permalink
Merge pull request #15 from ukwhatn/develop
Browse files Browse the repository at this point in the history
Release v3.0.7
  • Loading branch information
ukwhatn authored Apr 29, 2024
2 parents 0e69917 + b0805d9 commit 0b1dbab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "wikidot"
version = "3.0.6"
version = "3.0.7"
authors = [{ name = "ukwhatn", email = "[email protected]" }]
description = "Wikidot Utility Library"
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions src/wikidot/module/page.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ def search_pages(site: "Site", query: SearchPagesQuery = SearchPagesQuery()):
query_dict = query.as_dict()
query_dict["moduleName"] = "list/ListPagesModule"
query_dict["module_body"] = (
'[[div class="page"]]'
'[[div class="page"]]\n'
+ "".join(
[
f'[[span class="set {key}"]]'
Expand All @@ -188,7 +188,7 @@ def search_pages(site: "Site", query: SearchPagesQuery = SearchPagesQuery()):
for key in DEFAULT_MODULE_BODY
]
)
+ "[[/div]]"
+ "\n[[/div]]"
)

try:
Expand Down

0 comments on commit 0b1dbab

Please sign in to comment.