From 1cafde326cd1858980a5a13aa685b624792a8514 Mon Sep 17 00:00:00 2001 From: Sam Thursfield Date: Mon, 19 Jan 2015 16:57:57 +0000 Subject: Fix line > 79 characters that was breaking ./check --- morphlib/builder.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'morphlib/builder.py') 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: -- cgit v1.2.1