Skip to content

Commit

Permalink
Changed default value to passed in value
Browse files Browse the repository at this point in the history
  • Loading branch information
lleung030 committed Dec 6, 2023
1 parent 1e70d18 commit 8de78fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/gravatar/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def build_gravatar_url_for_email(email, size=GRAVATAR_DEFAULT_SIZE, default=GRAV
url += urllib.parse.urlencode(
{
's': str(size),
'default': GRAVATAR_DEFAULT_IMAGE,
'default': default,
}
)
return url
Expand Down

0 comments on commit 8de78fc

Please sign in to comment.