summaryrefslogtreecommitdiff
path: root/archaeological_operations/utils.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2017-07-27 12:12:30 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2017-07-27 12:12:30 +0200
commitee5a59601cbd02d43d9c95a51b435688ee298735 (patch)
tree107d1961156821f7159e17fb8dbcc9ffc3385cfd /archaeological_operations/utils.py
parent97582674f8d68cf0c3fb7321f1cfff437eb4ea1b (diff)
downloadIshtar-ee5a59601cbd02d43d9c95a51b435688ee298735.tar.bz2
Ishtar-ee5a59601cbd02d43d9c95a51b435688ee298735.zip
Year limit is now 1000
Diffstat (limited to 'archaeological_operations/utils.py')
-rw-r--r--archaeological_operations/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archaeological_operations/utils.py b/archaeological_operations/utils.py
index 40ca71c05..8afbb3be8 100644
--- a/archaeological_operations/utils.py
+++ b/archaeological_operations/utils.py
@@ -256,7 +256,7 @@ def parse_year(value):
yr = int(value)
except ValueError:
return None
- if yr < 1600 or yr > 2100:
+ if yr < 1000 or yr > 2100:
return None
return yr