summaryrefslogtreecommitdiff
path: root/morphlib/util.py
diff options
context:
space:
mode:
Diffstat (limited to 'morphlib/util.py')
-rw-r--r--morphlib/util.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/morphlib/util.py b/morphlib/util.py
index 7526c93c..22288cac 100644
--- a/morphlib/util.py
+++ b/morphlib/util.py
@@ -361,7 +361,6 @@ def parse_environment_pairs(env, pairs):
return dict(env.items() + extra_env.items())
-
def get_host_architecture(): # pragma: no cover
'''Get the canonical Morph name for the host's architecture.'''
@@ -381,3 +380,8 @@ def get_host_architecture(): # pragma: no cover
raise morphlib.Error('Unknown host architecture %s' % machine)
return table[machine]
+
+
+def sanitize_environment(env):
+ for k in env:
+ env[k] = str(env[k])