summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSrinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి) <thatiparthysreenivas@gmail.com>2018-11-10 02:14:12 +0530
committerTim Graham <timograham@gmail.com>2018-11-09 15:44:12 -0500
commita375e911efcc78054d09ef31422e081507e56623 (patch)
treefd33a26a1e68a0387ccc3a98c2ef157702fd17d6
parent978ad6d4c043f5004005b673c6e7bb8f415a35dc (diff)
Removed unused variables.
-rw-r--r--django/contrib/admindocs/utils.py4
-rw-r--r--django/contrib/contenttypes/models.py1
-rw-r--r--django/contrib/staticfiles/management/commands/collectstatic.py1
3 files changed, 0 insertions, 6 deletions
diff --git a/django/contrib/admindocs/utils.py b/django/contrib/admindocs/utils.py
index 7347a42180..bc0a3bca54 100644
--- a/django/contrib/admindocs/utils.py
+++ b/django/contrib/admindocs/utils.py
@@ -110,8 +110,6 @@ def create_reference_role(rolename, urlbase):
def _role(name, rawtext, text, lineno, inliner, options=None, content=None):
if options is None:
options = {}
- if content is None:
- content = []
node = docutils.nodes.reference(
rawtext,
text,
@@ -128,8 +126,6 @@ def create_reference_role(rolename, urlbase):
def default_reference_role(name, rawtext, text, lineno, inliner, options=None, content=None):
if options is None:
options = {}
- if content is None:
- content = []
context = inliner.document.settings.default_reference_context
node = docutils.nodes.reference(
rawtext,
diff --git a/django/contrib/contenttypes/models.py b/django/contrib/contenttypes/models.py
index ad2e0bc904..0ff0933faf 100644
--- a/django/contrib/contenttypes/models.py
+++ b/django/contrib/contenttypes/models.py
@@ -86,7 +86,6 @@ class ContentTypeManager(models.Manager):
model__in=needed_models
)
for ct in cts:
- model = ct.model_class()
opts_models = needed_opts.pop(ct.model_class()._meta, [])
for model in opts_models:
results[model] = ct
diff --git a/django/contrib/staticfiles/management/commands/collectstatic.py b/django/contrib/staticfiles/management/commands/collectstatic.py
index 6e11b984a7..7f5bbbf39b 100644
--- a/django/contrib/staticfiles/management/commands/collectstatic.py
+++ b/django/contrib/staticfiles/management/commands/collectstatic.py
@@ -271,7 +271,6 @@ class Command(BaseCommand):
# unmodified files.
can_skip_unmodified_files = not (self.symlink ^ os.path.islink(full_path))
else:
- full_path = None
# In remote storages, skipping is only based on the
# modified times since symlinks aren't relevant.
can_skip_unmodified_files = True