[patches] [fix] removed blog reload
diff --git a/patches/july_2012/blog_guest_permission.py b/patches/july_2012/blog_guest_permission.py
deleted file mode 100644
index 3fcaa0d..0000000
--- a/patches/july_2012/blog_guest_permission.py
+++ /dev/null
@@ -1,11 +0,0 @@
-from __future__ import unicode_literals
-def execute():
-	"""allocate read write permission to guest for doctype 'Blog'"""
-	import webnotes
-	webnotes.conn.sql("""delete from `tabDocPerm` where parent = 'Blog'""")
-	
-	webnotes.conn.commit()
-	
-	webnotes.reload_doc('website', 'doctype', 'blog')
-
-	webnotes.conn.begin()
diff --git a/patches/june_2012/cms2.py b/patches/june_2012/cms2.py
index f912f86..17b7d23 100644
--- a/patches/june_2012/cms2.py
+++ b/patches/june_2012/cms2.py
@@ -3,9 +3,7 @@
 	import webnotes
 	
 	# sync doctypes required for the patch
-	webnotes.reload_doc('website', 'doctype', 'web_cache')
 	webnotes.reload_doc('website', 'doctype', 'web_page')
-	webnotes.reload_doc('website', 'doctype', 'blog')
 	webnotes.reload_doc('website', 'doctype', 'website_settings')
 	webnotes.reload_doc('stock', 'doctype', 'item')
 
diff --git a/patches/patch_list.py b/patches/patch_list.py
index 5475d0f..b7ee2d1 100644
--- a/patches/patch_list.py
+++ b/patches/patch_list.py
@@ -74,7 +74,6 @@
 	"patches.july_2012.auth_table", 
 	"patches.july_2012.remove_event_role_owner_match", 
 	"patches.july_2012.deprecate_bulk_rename", 
-	"patches.july_2012.blog_guest_permission", 
 	"patches.july_2012.bin_permission", 
 	"patches.july_2012.project_patch_repeat", 
 	"patches.july_2012.repost_stock_due_to_wrong_packing_list",