Modify arguments to get_link

This commit is contained in:
sol HYUN 2017-03-23 18:01:38 +09:00
parent 505106d881
commit 309c138b33

View File

@ -328,7 +328,7 @@ class SchemaGenerator(object):
continue continue
link = self.get_link(path, method, view) link = self.get_link(path, method, view)
typical_path = self.make_typical_path(path) typical_path = self.make_typical_path(path)
keys = self.get_keys(subpath, method, view) keys = self.get_keys(typical_path, method, view)
insert_into(links, keys, link) insert_into(links, keys, link)
return links return links