aboutsummaryrefslogtreecommitdiffstats
path: root/markdown
diff options
context:
space:
mode:
authorWaylan Limberg <waylan.limberg@icloud.com>2018-07-24 11:50:02 -0400
committerWaylan Limberg <waylan.limberg@icloud.com>2018-07-24 13:14:07 -0400
commitd7764996e4e08faefaf3564fa71c19751847b55f (patch)
tree94345534436cfffd884689807c3070e07797ce11 /markdown
parentee54678185234f01d3de6a6334f30c9bb3417783 (diff)
downloadmarkdown-d7764996e4e08faefaf3564fa71c19751847b55f.tar.gz
markdown-d7764996e4e08faefaf3564fa71c19751847b55f.tar.bz2
markdown-d7764996e4e08faefaf3564fa71c19751847b55f.zip
Add support for PY37 and PYPY3.
Diffstat (limited to 'markdown')
-rw-r--r--markdown/extensions/legacy_attrs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/markdown/extensions/legacy_attrs.py b/markdown/extensions/legacy_attrs.py
index 280be07..b28223f 100644
--- a/markdown/extensions/legacy_attrs.py
+++ b/markdown/extensions/legacy_attrs.py
@@ -17,7 +17,7 @@ from markdown.treeprocessors import Treeprocessor, isString
from markdown.extensions import Extension
-ATTR_RE = re.compile("\{@([^\}]*)=([^\}]*)}") # {@id=123}
+ATTR_RE = re.compile(r'\{@([^\}]*)=([^\}]*)}') # {@id=123}
class LegacyAttrs(Treeprocessor):