summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Thursfield <sam.thursfield@codethink.co.uk>2015-01-19 16:57:57 +0000
committerSam Thursfield <sam.thursfield@codethink.co.uk>2015-01-19 16:57:57 +0000
commit1cafde326cd1858980a5a13aa685b624792a8514 (patch)
treed620bf8b5c8e63c62082c81e2b88fcb9347d1c7a
parent22e2920326bc3b7d180e07b239efa0e40dc32e25 (diff)
downloadmorph-1cafde326cd1858980a5a13aa685b624792a8514.tar.gz
Fix line > 79 characters that was breaking ./check
-rw-r--r--morphlib/builder.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/morphlib/builder.py b/morphlib/builder.py
index 7b0f4a5a..1bf4d454 100644
--- a/morphlib/builder.py
+++ b/morphlib/builder.py
@@ -34,6 +34,7 @@ import cliapp
import morphlib
from morphlib.artifactcachereference import ArtifactCacheReference
+from morphlib.util import error_message_for_containerised_commandline
import morphlib.gitversion
SYSTEM_INTEGRATION_PATH = os.path.join('baserock', 'system-integration')
@@ -674,7 +675,7 @@ class SystemBuilder(BuilderBase): # pragma: no cover
cmdline, env=env)
if exit != 0:
logging.debug('Command returned code %i', exit)
- msg = morphlib.util.error_message_for_containerised_commandline(
+ msg = error_message_for_containerised_commandline(
argv, err, container_config)
raise cliapp.AppException(msg)
except BaseException, e: