Browse Source

FML.

pull/24/head
Ben Kurtovic 9 years ago
parent
commit
73315e3370
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      copyvios/checker.py

+ 1
- 1
copyvios/checker.py View File

@@ -143,7 +143,7 @@ def _get_cached_results(page, conn, mode):
if skipped: # Should be impossible: data must be bad; run a new check
return None
result = page.copyvio_compare(url, min_confidence=T_SUSPECT, max_time=30)
if abs(result.confidence - confidence) < 0.0001:
if abs(result.confidence - confidence) >= 0.0001:
return None

for url, confidence, skipped in data:


Loading…
Cancel
Save