diff --git a/app/models/issue_trackers/github_issues_tracker.rb b/app/models/issue_trackers/github_issues_tracker.rb index 1dd3431..e03ec50 100644 --- a/app/models/issue_trackers/github_issues_tracker.rb +++ b/app/models/issue_trackers/github_issues_tracker.rb @@ -35,7 +35,7 @@ if defined? Octokit end begin - issue = client.create_issue(project_id, issue_title(problem), body_template.result(binding).unpack('C*').pack('U*'), options = {}) + issue = client.create_issue(project_id, issue_title(problem), body_template.result(binding).unpack('C*').pack('U*')) problem.update_attributes( :issue_link => issue.html_url, :issue_type => Label @@ -54,4 +54,4 @@ if defined? Octokit "https://github.com/#{project_id}/issues" end end -end \ No newline at end of file +end -- libgit2 0.21.2