Skip to content

Commit 3104eec

Browse files
committed
Fix parameter fmt in build of PoMessage
1 parent c081346 commit 3104eec

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_msgcheck.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ def test_spelling_bad_pwl() -> None:
397397
)
398398
def test_punct_full_stop_ja_zh(language: str, msgid: str, msgstr: str, error_message: str) -> None:
399399
"""Test punctuation with non-latin full-stops."""
400-
msg = PoMessage("translation.po", 42, {}, "utf-8", False, False, False)
400+
msg = PoMessage("translation.po", 42, {}, "utf-8", False, None, False)
401401
msg.messages = [(msgid, msgstr)]
402402
errors = PoMessage.check_punct(msg, language)
403403
if error_message:

0 commit comments

Comments
 (0)