I'm getting:

<type 'exceptions.TypeError'> not indexable

...when trying to disable my Welcome app from the admin interface.

Code listing:

577.
578.
579.
580.
581.
582.

583.
584.
585.
586.

            return []

    def keys(self):
        """Dictionary style keys() method."""
        if self.list is None:
            raise TypeError, "not indexable"

        return list(set(item.name for item in self.list))

    def has_key(self, key):
        """Dictionary style has_key() method."""

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to