Skip to content

Commit

Permalink
typo on line 88
Browse files Browse the repository at this point in the history
  • Loading branch information
cajbecu committed Sep 5, 2012
1 parent 32c616f commit 471a0ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fnordmetric.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def set_gravatar(self, email, session, default="identicon"):
raise ValueError('default must be one of "mm", "identicon", "monsterid", "wavatar", "retro"') raise ValueError('default must be one of "mm", "identicon", "monsterid", "wavatar", "retro"')


key = hashlib.md5(email.strip().lower()).hexdigest() key = hashlib.md5(email.strip().lower()).hexdigest()
self.set_picture("http://www.gravatar.com/avatar/%s?s=40&d=%s"%(key, deafult), session) self.set_picture("http://www.gravatar.com/avatar/%s?s=40&d=%s"%(key, default), session)


""" """
class FnordmetricTests(unittest.TestCase): class FnordmetricTests(unittest.TestCase):
Expand Down

0 comments on commit 471a0ee

Please sign in to comment.