Commit 6ab0e1ffff64c68c781031a7e3dc070b2cecedde

Authored by Sergey Nartimov
1 parent fb408302
Exists in master and in 1 other branch production

removed unused assignment

app/models/issue_trackers/github_issues_tracker.rb
... ... @@ -35,7 +35,7 @@ if defined? Octokit
35 35 end
36 36  
37 37 begin
38   - issue = client.create_issue(project_id, issue_title(problem), body_template.result(binding).unpack('C*').pack('U*'), options = {})
  38 + issue = client.create_issue(project_id, issue_title(problem), body_template.result(binding).unpack('C*').pack('U*'))
39 39 problem.update_attributes(
40 40 :issue_link => issue.html_url,
41 41 :issue_type => Label
... ... @@ -54,4 +54,4 @@ if defined? Octokit
54 54 "https://github.com/#{project_id}/issues"
55 55 end
56 56 end
57   -end
58 57 \ No newline at end of file
  58 +end
... ...