Skip to content

Commit 8385b83

Browse files
author
jvazquez-r7
committed
fix 1.8 warning about space before argument parenthesis
1 parent 3d753e9 commit 8385b83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/auxiliary/scanner/sap/sap_soap_rfc_read_table.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def run_host(ip)
5858
columns = []
5959
columns << '*' if datastore['FIELDS'].nil? or datastore['FIELDS'].empty?
6060
if datastore['FIELDS']
61-
columns.push (datastore['FIELDS']) if datastore['FIELDS'] =~ /^\w?/
61+
columns.push(datastore['FIELDS']) if datastore['FIELDS'] =~ /^\w?/
6262
columns = datastore['FIELDS'].split(',') if datastore['FIELDS'] =~ /\w*,\w*/
6363
end
6464
fields = ''

0 commit comments

Comments
 (0)