Explorar el Código

Better logging.

master
Trey Del Bonis hace 2 años
padre
commit
823aacad33
Se han modificado 1 ficheros con 4 adiciones y 1 borrados
  1. 4
    1
      main.py

+ 4
- 1
main.py Ver fichero

@@ -142,7 +142,6 @@ def query_tops(config):
if post['kind'] != 't3':
print('found post of kind', post['kind'])


p = process_post(post)

lt = p['title'].lower()
@@ -164,8 +163,12 @@ def filter_posts(config, posts, filt):
if p['rid'] not in filt:
ok.append(p)
newfilt.add(p['rid'])
else:
print('filtered out:', p['rid'], p['title'])
elif p['rid'] in filt:
newfilt.add(p['rid'])
else:
print('skipped:', p['rid'], p['title'])

return ok, list(newfilt)


Cargando…
Cancelar
Guardar