forked from orbit-oss/flask
Updating external_url_handler example to Python 3 (#3816)
This commit is contained in:
parent
070a0c1c75
commit
5d60cce242
1 changed files with 1 additions and 1 deletions
|
|
@ -239,7 +239,7 @@ def url_for(endpoint, **values):
|
||||||
# Re-raise the BuildError, in context of original traceback.
|
# Re-raise the BuildError, in context of original traceback.
|
||||||
exc_type, exc_value, tb = sys.exc_info()
|
exc_type, exc_value, tb = sys.exc_info()
|
||||||
if exc_value is error:
|
if exc_value is error:
|
||||||
raise exc_type, exc_value, tb
|
raise exc_type(exc_value).with_traceback(tb)
|
||||||
else:
|
else:
|
||||||
raise error
|
raise error
|
||||||
# url_for will use this result, instead of raising BuildError.
|
# url_for will use this result, instead of raising BuildError.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue