forked from github/pelican
Fix more python 3.6 regex DeprecationWarning's
This commit is contained in:
parent
cfcf40f1f8
commit
623eb0a4c0
5 changed files with 26 additions and 26 deletions
|
|
@ -105,7 +105,7 @@ class TestPage(LoggedTestCase):
|
|||
self.assertEqual(page._get_summary(), TEST_SUMMARY)
|
||||
self.assertLogCountEqual(
|
||||
count=1,
|
||||
msg="_get_summary\(\) has been deprecated since 3\.6\.4\. "
|
||||
msg=r"_get_summary\(\) has been deprecated since 3\.6\.4\. "
|
||||
"Use the summary decorator instead",
|
||||
level=logging.WARNING)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue