Ticket #12659: utils.py.diff

File utils.py.diff, 278 bytes (added by rodriguealcazar, 15 years ago)
Line 
1@@ -15,7 +15,7 @@
2 for subcontext in self:
3 if key in subcontext:
4 return subcontext[key]
5- raise KeyError(key)
6+ raise KeyError
7 else:
8 return super(ContextList, self).__getitem__(key)
9
Back to Top