2013-11-22 06:52:41 +00:00
|
|
|
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
|
|
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
|
|
|
|
def execute():
|
|
|
|
import webnotes
|
2013-11-29 14:27:38 +00:00
|
|
|
webnotes.conn.auto_commit_on_many_writes = True
|
2013-11-22 06:52:41 +00:00
|
|
|
for name in webnotes.conn.sql_list("""select name from tabComment"""):
|
|
|
|
webnotes.get_obj("Comment", name).update_comment_in_doc()
|
2013-11-29 14:27:38 +00:00
|
|
|
webnotes.conn.auto_commit_on_many_writes = False
|
|
|
|
|