Skip to content

Commit

Permalink
Fix literal \n in jobs -i
Browse files Browse the repository at this point in the history
Regression from #4063.
  • Loading branch information
wvu committed Jun 7, 2017
1 parent f4013b0 commit 5969245
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/msf/ui/console/command_dispatcher/jobs.rb
Expand Up @@ -165,7 +165,7 @@ def cmd_jobs(*args)
job = framework.jobs[job_id.to_s]
mod = job.ctx[0]

output = '\n'
output = "\n"
output += "Name: #{mod.name}"
output += ", started at #{job.start_time}" if job.start_time
print_line(output)
Expand Down

1 comment on commit 5969245

@wvu
Copy link
Contributor Author

@wvu wvu commented on 5969245 Jun 7, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Funny, looks like @bcoles noticed this, too. Fixed in any case.

Please sign in to comment.