zeio commited on
Commit
ad290eb
1 Parent(s): 2972088

fix(next): uncommented python module call

Browse files
Files changed (1) hide show
  1. next.sh +1 -1
next.sh CHANGED
@@ -23,7 +23,7 @@ last_to_fetch=$(($first_to_fetch + $n_items - 1))
23
 
24
  for i in $(seq $first_to_fetch $last_to_fetch); do
25
  printf "Fetching page %04d...\n" $i
26
- # python -m much fetch $i -p "$folder" -i index.tsv
27
  done
28
 
29
  echo "Number of files in the directory '$folder': $(ls $folder | wc -l)"
 
23
 
24
  for i in $(seq $first_to_fetch $last_to_fetch); do
25
  printf "Fetching page %04d...\n" $i
26
+ python -m much fetch $i -p "$folder" -i index.tsv
27
  done
28
 
29
  echo "Number of files in the directory '$folder': $(ls $folder | wc -l)"