diff options
Diffstat (limited to 'commcrawler/management')
-rw-r--r-- | commcrawler/management/commands/launch_crawl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/commcrawler/management/commands/launch_crawl.py b/commcrawler/management/commands/launch_crawl.py index bf76caf..883c035 100644 --- a/commcrawler/management/commands/launch_crawl.py +++ b/commcrawler/management/commands/launch_crawl.py @@ -30,7 +30,7 @@ class Command(BaseCommand): 'incompatible. Exit.\n') return - q = Crawl.objects.filter(status="C") + q = Crawl.objects.filter(status="A") if not q.count(): sys.stdout.write('No crawl waiting. Exit.\n') return |