Add suggestion for resolving error caused by endpoint overlapping
This commit is contained in:
parent
f8c881b887
commit
4968030440
1 changed files with 3 additions and 1 deletions
|
|
@ -1093,7 +1093,9 @@ class Flask(Scaffold):
|
||||||
if old_func is not None and old_func != view_func:
|
if old_func is not None and old_func != view_func:
|
||||||
raise AssertionError(
|
raise AssertionError(
|
||||||
"View function mapping is overwriting an existing"
|
"View function mapping is overwriting an existing"
|
||||||
f" endpoint function: {endpoint}"
|
f" endpoint function: {endpoint}.\n"
|
||||||
|
"Use 'route(... , endpoint=\"other_name\")' to"
|
||||||
|
" specify a different name."
|
||||||
)
|
)
|
||||||
self.view_functions[endpoint] = view_func
|
self.view_functions[endpoint] = view_func
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue