You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Found a bug? Please fill out the sections below. 👍
The url regex doesn't account for windows paths that have '\'
A summary of the issue.
Steps to Reproduce
clone the main repo,
run the server, and you will get a PatternLibraryEmpty error because it can't find the paths
because patterns/atoms won't work on windows
so now we have to change our settings for windows style path
Uh oh!
There was an error while loading. Please reload this page.
Found a bug? Please fill out the sections below. 👍
The url regex doesn't account for windows paths that have '\'
A summary of the issue.
Steps to Reproduce
clone the main repo,
run the server, and you will get a
PatternLibraryEmpty
error because it can't find the pathsbecause
patterns/atoms
won't work on windowsso now we have to change our settings for windows style path
Now you will get an error about the url not matching because the url also doesn't handle windows paths
basically this
r"^pattern/(?P<pattern_template_name>[\w./-]+%s)$"
should be
r"^pattern/(?P<pattern_template_name>[\w./-\\]+%s)$"
The text was updated successfully, but these errors were encountered: