ssg: StaticSiteClient: fix product name in error messages

This commit is contained in:
Nick Vella 2019-07-03 13:59:36 +10:00
parent 299c6081d5
commit 7c061ba390
1 changed files with 2 additions and 2 deletions

View File

@ -205,7 +205,7 @@ namespace OpenLiveWriter.BlogClient.Clients
throw new BlogClientException( throw new BlogClientException(
StringId.SSGBuildErrorTitle, StringId.SSGBuildErrorTitle,
StringId.SSGBuildErrorText, StringId.SSGBuildErrorText,
StringId.ProductNameVersioned, Res.Get(StringId.ProductNameVersioned),
proc.ExitCode.ToString(), proc.ExitCode.ToString(),
proc.StandardOutput.ReadToEnd(), proc.StandardOutput.ReadToEnd(),
proc.StandardError.ReadToEnd() proc.StandardError.ReadToEnd()
@ -224,7 +224,7 @@ namespace OpenLiveWriter.BlogClient.Clients
throw new BlogClientException( throw new BlogClientException(
StringId.SSGPublishErrorTitle, StringId.SSGPublishErrorTitle,
StringId.SSGPublishErrorText, StringId.SSGPublishErrorText,
StringId.ProductNameVersioned, Res.Get(StringId.ProductNameVersioned),
proc.ExitCode.ToString(), proc.ExitCode.ToString(),
proc.StandardOutput.ReadToEnd(), proc.StandardOutput.ReadToEnd(),
proc.StandardError.ReadToEnd() proc.StandardError.ReadToEnd()