diff options
| author | Tom Christie | 2015-01-07 09:17:11 +0000 |
|---|---|---|
| committer | Tom Christie | 2015-01-07 09:17:11 +0000 |
| commit | e6002099ca81893f9d571bb4af4172a29605c069 (patch) | |
| tree | 65daf160ccba83452fbce1732fb5dd2d4930aee2 | |
| parent | 271b638df10c0cf498cbc69847f388e978c4da78 (diff) | |
| parent | 07ad0474c0cef8f8e88d299eca9dffbe6d01c10d (diff) | |
| download | django-rest-framework-e6002099ca81893f9d571bb4af4172a29605c069.tar.bz2 | |
Merge pull request #2379 from Gaffney/fix-compat-comment
Fix compatibility comment regarding OrderedDict
| -rw-r--r-- | rest_framework/compat.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rest_framework/compat.py b/rest_framework/compat.py index ba26a3cd..b1f6f2fa 100644 --- a/rest_framework/compat.py +++ b/rest_framework/compat.py @@ -36,7 +36,7 @@ def unicode_to_repr(value): # OrderedDict only available in Python 2.7. # This will always be the case in Django 1.7 and above, as these versions # no longer support Python 2.6. -# For Django <= 1.6 and Python 2.6 fall back to OrderedDict. +# For Django <= 1.6 and Python 2.6 fall back to SortedDict. try: from collections import OrderedDict except ImportError: |
