Skip to content

Commit 256b198

Browse files
committed
Fixes #1726
1 parent c99e974 commit 256b198

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

thirdparty/clientform/clientform.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1139,7 +1139,11 @@ def _ParseFileEx(file, base_uri,
11391139
type, name, attrs, select_default=select_default, index=ii*10)
11401140
forms.append(form)
11411141
for form in forms:
1142-
form.fixup()
1142+
try:
1143+
form.fixup()
1144+
except AttributeError, ex:
1145+
if "item is disabled" not in str(ex):
1146+
raise
11431147
return forms
11441148

11451149

0 commit comments

Comments
 (0)