summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Thursfield <sam.thursfield@codethink.co.uk>2014-03-25 10:22:46 +0000
committerSam Thursfield <sam.thursfield@codethink.co.uk>2014-03-25 10:22:46 +0000
commitc65dacb946914340157c3072a0524f14e3e0fed0 (patch)
treeffa9df4cda64919051ae453e6e06bfd1722fca54
parent4fbdab363b301c24933601746766afa4b9c4435e (diff)
downloadsystem-tests-c65dacb946914340157c3072a0524f14e3e0fed0.tar.gz
Fix brokenness
-rw-r--r--util.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/util.py b/util.py
index 390e04c..9f9d186 100644
--- a/util.py
+++ b/util.py
@@ -17,6 +17,7 @@
import cliapp
import contextlib
+import copy
import os
import sys
import urlparse
@@ -33,7 +34,7 @@ def run_morph(args, **kwargs):
self-contained Morph test suite.
'''
- morph_command = config.MORPH_COMMAND
+ morph_command = copy.copy(config.MORPH_COMMAND)
if isinstance(morph_command, str):
if ' ' in morph_command:
morph_command = morph_command.split(' ')