From f93529f077ae499bc92f29b44b976e67d4c93201 Mon Sep 17 00:00:00 2001 From: Simon Tucker Date: Sun, 19 Jan 2020 11:38:51 -0800 Subject: [PATCH] Better error message. This closes #52 --- githubtasksutils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/githubtasksutils.go b/githubtasksutils.go index 5c1be540..8d25f3cc 100644 --- a/githubtasksutils.go +++ b/githubtasksutils.go @@ -35,7 +35,7 @@ func (s *Server) validateIntegrity(ctx context.Context) error { } if !activeTask { - s.RaiseIssue(ctx, "Task Issue", fmt.Sprintf("%v of %v has no active tasks", project.GetName(), milestone.GetName()), false) + s.RaiseIssue(ctx, "Task Issue", fmt.Sprintf("%v of %v for %v has no active tasks", project.GetName(), milestone.GetName(), milestone.GetGithubProject()), false) } } }