diff options
author | Simon Charette <charettes@users.noreply.github.com> | 2017-01-19 02:39:46 -0500 |
---|---|---|
committer | Claude Paroz <claude@2xlibre.net> | 2017-01-19 08:39:46 +0100 |
commit | cecc079168e8669138728d31611ff3a1e7eb3a9f (patch) | |
tree | 2415083d44f84c6f206930fc689a8c0e50a98caa /django/utils/tree.py | |
parent | a5563963397aeee30c32e3c1dab31bfe453ca89f (diff) | |
download | django-cecc079168e8669138728d31611ff3a1e7eb3a9f.tar.gz |
Refs #23919 -- Stopped inheriting from object to define new style classes.
Diffstat (limited to 'django/utils/tree.py')
-rw-r--r-- | django/utils/tree.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/utils/tree.py b/django/utils/tree.py index 3eb3529354..2c8ab3fe1c 100644 --- a/django/utils/tree.py +++ b/django/utils/tree.py @@ -8,7 +8,7 @@ import copy from django.utils.encoding import force_str, force_text -class Node(object): +class Node: """ A single internal node in the tree graph. A Node should be viewed as a connection (the root) with the children being either leaf nodes or other |