From 6ab0e1ffff64c68c781031a7e3dc070b2cecedde Mon Sep 17 00:00:00 2001 From: Sergey Nartimov Date: Sun, 28 Oct 2012 13:14:18 +0300 Subject: [PATCH] removed unused assignment --- app/models/issue_trackers/github_issues_tracker.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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