ソースを参照

Handle empty URLs better.

tags/v0.2
Ben Kurtovic 9年前
コミット
0438766ee4
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      earwigbot/wiki/copyvios/workers.py

+ 1
- 1
earwigbot/wiki/copyvios/workers.py ファイルの表示

@@ -354,7 +354,7 @@ class CopyvioWorkspace(object):
with self._queues.lock:
if self._is_finished:
break
if url in self._handled_urls:
if not url or url in self._handled_urls:
continue
self._handled_urls.append(url)
if exclude_check and exclude_check(url):


読み込み中…
キャンセル
保存