diff piecrust/appconfig.py @ 1168:10520472cc73

routing: Fix breakages with routing on some versions of Python. Finally figured what happened with change 6baa94da8b16 (this is a Mercurial hash by the way if you're looking at the Git mirror). Between Python 3.6 and 3.7 there was a change where the percent sign ('%') went from being escaped by `re.escape` to _not_ being escaped. So now we need to use different regex patterns dependin on the Python version, yay.
author Ludovic Chabant <ludovic@chabant.com>
date Fri, 04 Oct 2019 11:13:33 -0700
parents 97b1b46cc156
children
line wrap: on
line diff
--- a/piecrust/appconfig.py	Fri Oct 04 10:07:38 2019 -0700
+++ b/piecrust/appconfig.py	Fri Oct 04 11:13:33 2019 -0700
@@ -1,5 +1,6 @@
 import re
 import os.path
+import sys
 import copy
 import json
 import urllib
@@ -372,7 +373,8 @@
     cache.write('pagination_suffix_format', pgn_suffix_fmt)
 
     pgn_suffix_re = re.escape(v)
-    pgn_suffix_re = (pgn_suffix_re.replace("\\%num\\%", "(?P<num>\\d+)") +
+    escaped_token = "%num%" if sys.hexversion >= 0x3070000 else "\\%num\\%"
+    pgn_suffix_re = (pgn_suffix_re.replace(escaped_token, "(?P<num>\\d+)") +
                      '$')
     cache.write('pagination_suffix_re', pgn_suffix_re)
     return v