summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--routes/mapper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/routes/mapper.py b/routes/mapper.py
index c113ccc..72981cb 100644
--- a/routes/mapper.py
+++ b/routes/mapper.py
@@ -409,7 +409,7 @@ class Mapper(SubMapperParent):
self.append_slash = False
self.sub_domains = False
self.sub_domains_ignore = []
- self.domain_match = '[^\.\/]+?\.[^\.\/]+'
+ self.domain_match = r'[^\.\/]+?\.[^\.\/]+'
self.explicit = explicit
self.encoding = 'utf-8'
self.decode_errors = 'ignore'