Skip to content

Commit

Permalink
Merge pull request #40 from igerko/master
Browse files Browse the repository at this point in the history
support for django 3.2
  • Loading branch information
raiderrobert authored Aug 10, 2021
2 parents 4711c0a + ba72b45 commit 8c93175
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion multiurl.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,13 @@ def resolve(self, path):


class MultiResolverMatch(object):
def __init__(self, matches, exceptions, patterns_matched, path, route=''):
def __init__(self, matches, exceptions, patterns_matched, path, route='', tried=None):
self.matches = matches
self.exceptions = exceptions
self.patterns_matched = patterns_matched
self.path = path
self.route = route
self.tried = tried

# Attributes to emulate ResolverMatch
self.kwargs = {}
Expand Down

0 comments on commit 8c93175

Please sign in to comment.