Explorar el Código

Fixed extending the list properly oops.

master
Trey Del Bonis hace 2 años
padre
commit
69a07238b3
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      searchwkr.py

+ 1
- 1
searchwkr.py Ver fichero

@@ -22,7 +22,7 @@ def main(argv):
print(json.dumps(res, indent=' '))

# Save the urls we've seen now.
recents_before['urls'].append(list(map(lambda e: e['u'], res)))
recents_before['urls'].extend(map(lambda e: e['u'], res))
save_recents(recents_before)

# Now send them up.

Cargando…
Cancelar
Guardar