소스 검색

Fixed extending the list properly oops.

master
Trey Del Bonis 2 년 전
부모
커밋
69a07238b3
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      searchwkr.py

+ 1
- 1
searchwkr.py 파일 보기

@@ -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…
취소
저장