Commit 6ab0e1ffff64c68c781031a7e3dc070b2cecedde
1 parent
fb408302
Exists in
master
and in
1 other branch
removed unused assignment
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
app/models/issue_trackers/github_issues_tracker.rb
@@ -35,7 +35,7 @@ if defined? Octokit | @@ -35,7 +35,7 @@ if defined? Octokit | ||
35 | end | 35 | end |
36 | 36 | ||
37 | begin | 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 | problem.update_attributes( | 39 | problem.update_attributes( |
40 | :issue_link => issue.html_url, | 40 | :issue_link => issue.html_url, |
41 | :issue_type => Label | 41 | :issue_type => Label |
@@ -54,4 +54,4 @@ if defined? Octokit | @@ -54,4 +54,4 @@ if defined? Octokit | ||
54 | "https://github.com/#{project_id}/issues" | 54 | "https://github.com/#{project_id}/issues" |
55 | end | 55 | end |
56 | end | 56 | end |
57 | -end | ||
58 | \ No newline at end of file | 57 | \ No newline at end of file |
58 | +end |