1
0
Fork 0
forked from github/pelican

Fix more python 3.6 regex DeprecationWarning's

This commit is contained in:
derwinlu 2017-03-29 10:19:47 +02:00
commit 623eb0a4c0
5 changed files with 26 additions and 26 deletions

View file

@ -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)