Skip to content

Commit 5969245

Browse files
committed
Fix literal \n in jobs -i
Regression from rapid7#4063.
1 parent f4013b0 commit 5969245

File tree

1 file changed

+1
-1
lines changed
  • lib/msf/ui/console/command_dispatcher

1 file changed

+1
-1
lines changed

lib/msf/ui/console/command_dispatcher/jobs.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ def cmd_jobs(*args)
165165
job = framework.jobs[job_id.to_s]
166166
mod = job.ctx[0]
167167

168-
output = '\n'
168+
output = "\n"
169169
output += "Name: #{mod.name}"
170170
output += ", started at #{job.start_time}" if job.start_time
171171
print_line(output)

0 commit comments

Comments
 (0)