blob: b07647531804e2ac139e0078fe089c3fdacbacf1 [file] [log] [blame]
Rushabh Mehtabc7358a2013-11-22 12:22:41 +05301# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
2# License: GNU General Public License v3. See license.txt
3
4def execute():
5 import webnotes
Pratik Vyas7e8f9832013-11-29 19:57:38 +05306 webnotes.conn.auto_commit_on_many_writes = True
Rushabh Mehtabc7358a2013-11-22 12:22:41 +05307 for name in webnotes.conn.sql_list("""select name from tabComment"""):
8 webnotes.get_obj("Comment", name).update_comment_in_doc()
Pratik Vyas7e8f9832013-11-29 19:57:38 +05309 webnotes.conn.auto_commit_on_many_writes = False
10