Commit 4d0c7352778be7e0af65a215034c0efb648c5868

Authored by David RENÉ
1 parent f929f8f4

reverse the result list to order it in right way

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
controller/hk_rows_import.anubis
... ... @@ -107,7 +107,7 @@ define (Int, List(List(String)))
107 107 List(List(String)) so_far
108 108 ) =
109 109 if max_count =< 0 then
110   - (offset, so_far)
  110 + (offset, reverse(so_far))
111 111 else
112 112 if cvs_line_reader(unique) is
113 113 {
... ...