aboutsummaryrefslogtreecommitdiffstats
path: root/fuzzycat/verify.py
diff options
context:
space:
mode:
Diffstat (limited to 'fuzzycat/verify.py')
-rw-r--r--fuzzycat/verify.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/fuzzycat/verify.py b/fuzzycat/verify.py
index 99b507a..9b29f81 100644
--- a/fuzzycat/verify.py
+++ b/fuzzycat/verify.py
@@ -465,7 +465,7 @@ def verify(a: Dict, b: Dict, min_title_length=5) -> Tuple[str, str]:
# preprint and published work may not be published in the same
# year; compromise allow a small gap
if a_release_year and b_release_year and abs(int(a_release_year) -
- int(b_release_year)) > 1:
+ int(b_release_year)) > 2:
return Verify(Status.DIFFERENT, Reason.YEAR)
return Verify(Status.EXACT, Reason.TITLE_AUTHOR_MATCH)