Skip to content

Commit 971c24b

Browse files
committed
Fixing quotes
1 parent d0c9e53 commit 971c24b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packet/context_processors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def get_rit_image(username):
5656
if username:
5757
addresses = [username + "@rit.edu", username + "@g.rit.edu"]
5858
for addr in addresses:
59-
url = "https://gravatar.com/avatar/" + hashlib.md5(addr.encode('utf8')).hexdigest() + ".jpg?d=404&s=250"
59+
url = "https://gravatar.com/avatar/" + hashlib.md5(addr.encode("utf8")).hexdigest() + ".jpg?d=404&s=250"
6060
gravatar = urllib.request.urlopen(url)
6161
if gravatar.getcode() == 200:
6262
return url

0 commit comments

Comments
 (0)