summaryrefslogtreecommitdiff
path: root/commcrawler/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'commcrawler/models.py')
-rw-r--r--commcrawler/models.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/commcrawler/models.py b/commcrawler/models.py
index 9a98b89..be371ca 100644
--- a/commcrawler/models.py
+++ b/commcrawler/models.py
@@ -54,6 +54,7 @@ class Crawl(models.Model):
class CrawlResult(models.Model):
STATUS = (
('P', _("In progress")),
+ ('T', _("Time out")),
('F', _("Finished"))
)
crawl = models.ForeignKey(Crawl, verbose_name=_("Crawl"))