Add missing psh comment

This commit is contained in:
James Lee 2019-09-18 12:16:13 -05:00
parent 0c62ce0247
commit 1c1c094470
No known key found for this signature in database
GPG Key ID: 2D6094C7CEA0A321
1 changed files with 8 additions and 0 deletions

View File

@ -152,5 +152,13 @@ module Rex
return wordwrap(str, 0, wrap, '', '# ')
end
#
# Creates a psh-style comment
#
def self.to_psh_comment(str, wrap = DefaultWrap)
return wordwrap(str, 0, wrap, '', '# ')
end
end
end