Commit 80842040 authored by Dmitry Trofimov's avatar Dmitry Trofimov
Browse files

Removed print-statements (PY-6675).

parent 52def9db
Showing with 0 additions and 5 deletions
+0 -5
......@@ -183,8 +183,6 @@ def varToXML(val, name, doTrim=True):
except:
value = 'Unable to get repr for %s' % v.__class__
print(name)
print(quote(name))
xml = '<var name="%s" type="%s"' % (makeValidXmlValue(quote(name, '/>_= ')), makeValidXmlValue(typeName))
if value:
......@@ -208,9 +206,6 @@ def varToXML(val, name, doTrim=True):
else:
xmlValue = ''
print(value)
print(xmlValue)
if is_exception_on_eval:
xmlCont = ' isErrorOnEval="True"'
else:
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment