blob: aefb7e7b245802b6b63be62c95c9395d2ba043de [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
6 for name in webnotes.conn.sql_list("""select name from tabComment"""):
7 webnotes.get_obj("Comment", name).update_comment_in_doc()
8