diff --git a/flask_security/utils.py b/flask_security/utils.py index b1996d8..3ec962c 100644 --- a/flask_security/utils.py +++ b/flask_security/utils.py @@ -189,7 +189,9 @@ def get_url(endpoint_or_url): def slash_url_suffix(url, suffix): - """Adds a slash either to the beginning or the end of a suffix (which is to be appended to a URL), depending on whether or not the URL ends with a slash.""" + """Adds a slash either to the beginning or the end of a suffix + (which is to be appended to a URL), depending on whether or not + the URL ends with a slash.""" return url.endswith('/') and ('%s/' % suffix) or ('/%s' % suffix)