mirror of
https://github.com/wassname/flask-security.git
synced 2026-07-20 12:20:47 +08:00
split docstring into multiple lines to make travis CI happy
This commit is contained in:
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user