Browse Source

Fixed extending the list properly oops.

master
Trey Del Bonis 2 years ago
parent
commit
69a07238b3
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      searchwkr.py

+ 1
- 1
searchwkr.py View File

@@ -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.

Loading…
Cancel
Save