remove extraneous parenthesis

git-svn-id: file:///home/svn/framework3/trunk@9718 4d416f70-5f16-0410-b530-b9f4589650da
unstable
Joshua Drake 2010-07-07 17:38:26 +00:00
parent 3aa3a642ac
commit ba76698b5a
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ class Metasploit3 < Msf::Auxiliary
0.upto(4) { |col|
full_table += row[col] + '.' if col < 3
column_name = row[col] if col == 3
buffer += row[col].ljust(widths[col] + 1))
buffer += row[col].ljust(widths[col] + 1)
}
full_table.slice!(-1, 1)
count_sql += full_table