[patches] [fix] fixed an old patch

This commit is contained in:
Anand Doshi 2013-05-16 16:13:16 +05:30
parent cae99dbf71
commit 9a22e3f1db

View File

@ -9,7 +9,9 @@ def execute():
for doctype in webnotes.conn.sql_list("""select parent from tabDocField where
fieldname='file_list'"""):
update_file_list(doctype, singles)
# the other scenario is handled in p07_update_file_data_2
if doctype in singles:
update_file_list(doctype, singles)
webnotes.conn.sql("""delete from tabDocField where fieldname='file_list'
and parent=%s""", doctype)