From 0b20157fd3c06313fca73271aaa2c79ba7655d82 Mon Sep 17 00:00:00 2001 From: Christopher Lee Date: Fri, 4 Sep 2009 15:30:11 -0700 Subject: [PATCH] corrected ClassicUnpickler reference to point to classutil location --- pygr/cnestedlist.pyx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pygr/cnestedlist.pyx b/pygr/cnestedlist.pyx index f703001..b31ca00 100644 --- a/pygr/cnestedlist.pyx +++ b/pygr/cnestedlist.pyx @@ -1543,8 +1543,8 @@ cdef class NLMSA: self.seqs.close() def __reduce__(self): ############################# SUPPORT FOR PICKLING - import seqdb - return (seqdb.ClassicUnpickler, (self.__class__,self.__getstate__())) + import classutil + return (classutil.ClassicUnpickler, (self.__class__,self.__getstate__())) def __getstate__(self): if self.in_memory_mode: raise ValueError("can't pickle NLMSA.in_memory_mode") -- 2.11.4.GIT