Comment 5 for bug 666297

Revision history for this message
Jim B. Glenn (jimbglenn) wrote :

ran on STAGING oxfam, check me:
[oxfam@karlhost01 current]$ bin/debug
Python 2.5.5 (r255:77872, Jun 7 2010, 14:10:57)
[GCC 4.1.2 20080704 (Red Hat 4.1.2-46)] on linux2
Type "help" for more information. "root" is the karl root object.
>>> missing = set()
>>> profiles = root['profiles']
>>> catalog = root.catalog
>>> for index in (catalog['creator'], catalog['modified_by']):
... for key in index._fwd_index.keys():
... if profiles.get(key) is None:
... missing.add(key)
...
>>> for userid in sorted(missing):
... print userid
...
None
kuhlermckeown
>>>