Remove legacy search.
[wolnelektury.git] / src / search / management / commands / snippets.py
diff --git a/src/search/management/commands/snippets.py b/src/search/management/commands/snippets.py
deleted file mode 100755 (executable)
index af80143..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-# -*- coding: utf-8 -*-
-# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
-# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
-#
-from django.core.management.base import BaseCommand
-
-from glob import glob
-from os import path
-from django.conf import settings
-
-
-class Command(BaseCommand):
-    help = 'Check snippets.'
-    args = ''
-
-    def handle(self, *args, **opts):
-        sfn = glob(settings.SEARCH_INDEX+'snippets/*')
-        for fn in sfn:
-            print fn
-            bkid = path.basename(fn)
-            with open(fn) as f:
-                cont = f.read()
-                try:
-                    cont.decode('utf-8')
-                except UnicodeDecodeError:
-                    print "error in snippets %s" % bkid