Removed unused regexes in django.core.management.templates.

Unused since their introduction in a9a0f0b03f.
This commit is contained in:
desigrammer 2018-04-02 20:32:24 +09:00 committed by Tim Graham
parent e163effecc
commit d31a248c64
1 changed files with 0 additions and 4 deletions

View File

@ -2,7 +2,6 @@ import cgi
import mimetypes
import os
import posixpath
import re
import shutil
import stat
import tempfile
@ -18,9 +17,6 @@ from django.template import Context, Engine
from django.utils import archive
from django.utils.version import get_docs_version
_drive_re = re.compile('^([a-z]):', re.I)
_url_drive_re = re.compile('^([a-z])[:|]', re.I)
class TemplateCommand(BaseCommand):
"""