Rushabh Mehta | bc7358a | 2013-11-22 12:22:41 +0530 | [diff] [blame] | 1 | # Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors |
2 | # License: GNU General Public License v3. See license.txt | ||||
3 | |||||
4 | def 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 |