Hi. After moving data from one db to another using django.core.serializers I am getting cPickle error: "invalid load key, '\'" when trying to unpickle. Model sample follow:
class SomeModel( models.Model ): data_pickle = models.TextField( blank=True, null=True ) def unpack( self ): try: self.data_dict = cPickle.loads( self.data_pickle ) except Exception, e: print 'failed to unpickle: %s' % e self.data_dict = dict() What can cause this problem? Some details: Source postgres runs on FreeBDS. Target postgres runs on win32. Data looks identical using pgAdminIII. Thanks. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---