Clean up argument creation

pull/3/head
Omar Roth 2018-02-11 22:05:22 -06:00
rodzic 489ae35f1d
commit 42df0df5a0
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -118,9 +118,9 @@ spawn do
client = get_client(pool)
args = [] of String
1..(top.size - 1).times { |i| args << "($#{i + 1}), " }
args << "($#{top.size}) "
(1..top.size).each { |i| args << "($#{i})," }
args = args.join("")
args = args.chomp(",")
videos = [] of Video