[asterisk-commits] mnicholson: testsuite/asterisk/trunk r2455 - /asterisk/trunk/runtests.py
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Sep 26 08:00:07 CDT 2011
Author: mnicholson
Date: Mon Sep 26 08:00:03 2011
New Revision: 2455
URL: http://svnview.digium.com/svn/testsuite?view=rev&rev=2455
Log:
fix call to __strip_illegal_xml_chars
Modified:
asterisk/trunk/runtests.py
Modified: asterisk/trunk/runtests.py
URL: http://svnview.digium.com/svn/testsuite/asterisk/trunk/runtests.py?view=diff&rev=2455&r1=2454&r2=2455
==============================================================================
--- asterisk/trunk/runtests.py (original)
+++ asterisk/trunk/runtests.py Mon Sep 26 08:00:03 2011
@@ -259,7 +259,7 @@
continue
f = doc.createElement("failure")
- f.appendChild(doc.createTextNode(__strip_illegal_xml_chars(t.failure_message)))
+ f.appendChild(doc.createTextNode(self.__strip_illegal_xml_chars(t.failure_message)))
tc.appendChild(f)
doc.writexml(f, encoding = "utf-8")
More information about the asterisk-commits
mailing list