lib/face_control/checkers/comments.rb in face_control-0.8.2 vs lib/face_control/checkers/comments.rb in face_control-0.8.3

- old
+ new

@@ -11,10 +11,10 @@ def parse(command_output) command_output.lines.map do |line| file, line_num = line.split(":", 3) Comment.new( file: file, - line: line_num, + line: line_num.to_i, text: "Do not bury this task in code. Do it now or create a JIRA issue." ) end end end