Skip to content

Commit

Permalink
Fix #68 - error while logging in debug (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
ojacques authored Oct 25, 2024
1 parent 46ffa55 commit b90e19e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion md2conf/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ def get_or_create_page(
page_id = self.page_exists(title)

if page_id is not None:
LOGGER.debug("Retrieving existing page: %d", page_id)
LOGGER.debug("Retrieving existing page: %s", page_id)
return self.get_page(page_id)
else:
LOGGER.debug("Creating new page with title: %s", title)
Expand Down

0 comments on commit b90e19e

Please sign in to comment.