Skip to content
This repository has been archived by the owner on Feb 9, 2023. It is now read-only.

Commit

Permalink
Fix typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
janjaapdriessen committed Jan 7, 2011
1 parent f41e88f commit e3dd899
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/zope/fanstatic/zopesupport.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def traverse(self, name, furtherPath):
def __getitem__(self, name):
resource = self.get(name, None)
if resource is None:
raise KeyErro(name)
raise KeyError(name)
return resource

def __str__(self):
Expand Down

0 comments on commit e3dd899

Please sign in to comment.