Merge pull request #4888 from rolandwalker/caskerror_exception_format

don't undent CaskError exception text
This commit is contained in:
Roland Walker 2014-06-14 18:15:36 -04:00
commit ecd038ec6f
1 changed files with 6 additions and 6 deletions

View File

@ -51,14 +51,14 @@ class CaskCommandFailedError < CaskError
end
def to_s;
<<-EOS.undent
Command failed to execute!
<<-EOS
Command failed to execute!
==> Failed command:
#{@cmd}
==> Failed command:
#{@cmd}
==> Output of failed command:
#{@output}
==> Output of failed command:
#{@output}
EOS
end
end