From 7946a75cb4368490a1734a5fb7a352d1a962eda6 Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Tue, 16 Jun 2009 20:26:32 +0000 Subject: [PATCH] no longer explicitly replace newlines from string in parseString() --- geni/util/rspec.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geni/util/rspec.py b/geni/util/rspec.py index b4c339b9..cad6a4e0 100644 --- a/geni/util/rspec.py +++ b/geni/util/rspec.py @@ -129,7 +129,7 @@ class Rspec(): """ read an xml string and store it as a dom object. """ - xml = xml.replace('\n', '').replace('\t', '').strip() + #xml = xml.replace('\n', '').replace('\t', '').strip() dom = minidom.parseString(xml) self.rootNode = dom.childNodes[0] -- 2.47.0