1
0
mirror of https://github.com/interviewstreet/go-jira.git synced 2025-07-15 01:04:38 +02:00

Fixed a few fmt and debug outputs

This commit is contained in:
Andy Grunwald
2016-10-03 13:33:46 +02:00
parent 8d3b47871f
commit 31508ce192
6 changed files with 95 additions and 119 deletions

View File

@ -2,8 +2,9 @@ package jira
import (
"fmt"
"github.com/trivago/tgo/tcontainer"
"strings"
"github.com/trivago/tgo/tcontainer"
)
// CreateMeta contains information about fields and their attributed to create a ticket.
@ -49,7 +50,7 @@ func (s *IssueService) GetCreateMeta(projectkey string) (*CreateMetaInfo, *Respo
if err != nil {
return nil, nil, err
}
fmt.Println(req.URL)
meta := new(CreateMetaInfo)
resp, err := s.client.Do(req, meta)