summaryrefslogtreecommitdiffstats
path: root/utils_xml.py
diff options
context:
space:
mode:
authorJan Pokorný <jpokorny@redhat.com>2014-05-30 19:59:13 +0200
committerJan Pokorný <jpokorny@redhat.com>2014-05-30 19:59:55 +0200
commit2eed8c42b204e9810093b4544c58981c52b7f58b (patch)
treee074f1dc2992808dd2b3113d9ae9a8e6d73041ce /utils_xml.py
parent4dcb2445b09936857569487fbb2548d3d8759862 (diff)
downloadclufter-2eed8c42b204e9810093b4544c58981c52b7f58b.tar.gz
clufter-2eed8c42b204e9810093b4544c58981c52b7f58b.tar.xz
clufter-2eed8c42b204e9810093b4544c58981c52b7f58b.zip
Cleanup: move squote from utils to utils_xml
Signed-off-by: Jan Pokorný <jpokorny@redhat.com>
Diffstat (limited to 'utils_xml.py')
-rw-r--r--utils_xml.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/utils_xml.py b/utils_xml.py
index c10e3bc..9f08893 100644
--- a/utils_xml.py
+++ b/utils_xml.py
@@ -21,6 +21,11 @@ class UtilsXmlError(ClufterPlainError):
pass
+def squote(s):
+ """Simple quote"""
+ return "'" + s + "'"
+
+
@selfaware
def rng_pivot(me, et, tag):
"""Given Relax NG grammar etree as `et`, change start tag (in situ!)"""