Ticket #12659: utils.py.2.diff

File utils.py.2.diff, 388 bytes (added by rodriguealcazar, 14 years ago)
  • test/utils.py

     
    1515            for subcontext in self:
    1616                if key in subcontext:
    1717                    return subcontext[key]
    18             raise KeyError(key)
     18            raise KeyError
    1919        else:
    2020            return super(ContextList, self).__getitem__(key)
    2121
Back to Top