summaryrefslogtreecommitdiff
path: root/lib/thandy/util.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/thandy/util.py')
-rw-r--r--lib/thandy/util.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/thandy/util.py b/lib/thandy/util.py
index 90f251f..29c7b87 100644
--- a/lib/thandy/util.py
+++ b/lib/thandy/util.py
@@ -19,6 +19,11 @@ import thandy.master_keys
_jsonModule = None
def importJSON():
+ """Load and return the json module.
+
+ When everybody has Python 2.6 or later, we can just replace this with
+ 'import json; return json'
+ """
global _jsonModule
if _jsonModule is not None:
return _jsonModule
@@ -200,6 +205,7 @@ def getRegistryValue(keyname):
_controlLog = logging.getLogger("thandy-ctrl")
def formatLogString(s):
+ """DOCDOC"""
s = '"%s"' % re.sub(r'(["\\])', r'\\\1', s)
s = s.replace("\n", "\\n")
return s