introducing model 3.0, refactored import module
diff --git a/patches/june_2012/cms2.py b/patches/june_2012/cms2.py
index 673214f..c476d91 100644
--- a/patches/june_2012/cms2.py
+++ b/patches/june_2012/cms2.py
@@ -67,13 +67,13 @@
 	}
 
 	import webnotes
-	from webnotes.model.doclist import DocList
+	from webnotes.model.wrapper import ModelWrapper
 	import webnotes.modules.patch_handler
 
 	for dt in query_map:
 		for result in webnotes.conn.sql(query_map[dt], as_dict=1):
 			try:
-				DocList(dt, result['name'].encode('utf-8')).save()
+				ModelWrapper(dt, result['name'].encode('utf-8')).save()
 			except Exception, e:
 				webnotes.modules.patch_handler.log(unicode(e))