From 4ed7fadf3a63006965e4cd918f50951830044d39 Mon Sep 17 00:00:00 2001 From: Ivan Larin Date: Sat, 18 Jun 2016 18:06:24 +0300 Subject: [PATCH] CompillerException with proper error_output default value --- pipeline/exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipeline/exceptions.py b/pipeline/exceptions.py index 4152b97c..aa787b83 100644 --- a/pipeline/exceptions.py +++ b/pipeline/exceptions.py @@ -10,7 +10,7 @@ class PackageNotFound(PipelineException): class CompilerError(PipelineException): - def __init__(self, msg, command=None, error_output=None): + def __init__(self, msg, command=None, error_output=''): super(CompilerError, self).__init__(msg) self.command = command