Skip to content

Commit f690bd4

Browse files
authored
Update docs/classic-ui/csrf.md
1 parent a320e72 commit f690bd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/classic-ui/csrf.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ url = f"https://www.example.com?param1=value1"
123123
parsed_url = urlparse(url)
124124

125125
# Add the new query parameters to the 'query' component of the URL
126-
token_query = urlencode({'_authenticator': createToken()})
126+
token_query = urlencode({"_authenticator": createToken()})
127127
new_query = f'{parsed_url.query}&{token_query}'
128128

129129
# Reassemble the URL with the updated query string

0 commit comments

Comments
 (0)