Merge pull request #1720 from leonelcamara/patch-4

Fix BEAUTIFY trying to display uploaded file contents
This commit is contained in:
mdipierro
2017-08-07 07:08:58 -05:00
committed by GitHub

View File

@@ -2431,7 +2431,7 @@ class BEAUTIFY(DIV):
if level == 0:
return
for c in self.components:
if hasattr(c, 'value') and not callable(c.value):
if hasattr(c, 'value') and not callable(c.value) and not isinstance(c, cgi.FieldStorage):
if c.value:
components.append(c.value)
if hasattr(c, 'xml') and callable(c.xml):