mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
Fix for DeprecationWarning: invalid escape sequence
This commit is contained in:
parent
853c5fc370
commit
65ca17d729
1 changed files with 1 additions and 1 deletions
|
|
@ -1191,7 +1191,7 @@ def wrap_view(view_fn, datasette):
|
|||
return async_view_fn
|
||||
|
||||
|
||||
_curly_re = re.compile("(\{.*?\})")
|
||||
_curly_re = re.compile(r"(\{.*?\})")
|
||||
|
||||
|
||||
def route_pattern_from_filepath(filepath):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue