[fix] allow lot of queries in update comments patch

This commit is contained in:
Pratik Vyas 2013-11-29 19:57:38 +05:30
parent aab81bb8c5
commit 7e8f98368a

View File

@ -3,6 +3,8 @@
def execute():
import webnotes
webnotes.conn.auto_commit_on_many_writes = True
for name in webnotes.conn.sql_list("""select name from tabComment"""):
webnotes.get_obj("Comment", name).update_comment_in_doc()
webnotes.conn.auto_commit_on_many_writes = False