From c8bafab8fc37a0dfb72f94d5dd4120a46118655a Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 19 Aug 2011 14:45:12 -0600 Subject: [PATCH] Fix #829742 (Inconsistent string "Articles") --- resources/default_tweaks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/default_tweaks.py b/resources/default_tweaks.py index 2c9b032fc5..12731a8c42 100644 --- a/resources/default_tweaks.py +++ b/resources/default_tweaks.py @@ -181,7 +181,7 @@ # To disable use the expression: '^$' # This expression is designed for articles that are followed by spaces. If you # also need to match articles that are followed by other characters, for example L' -# in French, use: r"^(A\s+|The\s+|An\s+|L')" instead. +# in French, use: "^(A\s+|The\s+|An\s+|L')" instead. # Default: '^(A|The|An)\s+' title_sort_articles=r'^(A|The|An)\s+'