In addition to deleting a couple troublesome member folders (out of many so not
a big deal) I had to put a try/except around the following block of code from
CMFCore/MemberDataTool.py to get the migration to finish, anyone see a problem
with doing that?

starting at line 314:

            try:
              if mapping.has_key(id):
                  if not self.__class__.__dict__.has_key(id):
                      value = mapping[id]
                      if type(value)==type(''):
                          proptype = tool.getPropertyType(id) or 'string'
                          if type_converters.has_key(proptype):
                              value = type_converters[proptype](value)
                      setattr(self, id, value)
            except:
              pass


Thanks,

Alex


_______________________________________________
Setup mailing list
[email protected]
http://lists.plone.org/mailman/listinfo/setup

Reply via email to