diff options
| author | Michiel Beijen <mb@x14.nl> | 2017-04-23 22:06:12 +0200 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2017-04-24 20:51:55 -0400 |
| commit | 7eecf496eecdf9ce1227e0ea517d32880e3300d9 (patch) | |
| tree | f213d2fb894edb8c5eeb19ca960547eb84beae1a /django | |
| parent | 6cbfaba1787b17752361ae4de1fff8d0acfe62f1 (diff) | |
[1.11.x] Renamed "Mac OS X" to "macOS" in docs.
Backport of 5e8625ba643db118a44cb32e9e48bf431ef4da53 from master
Diffstat (limited to 'django')
| -rw-r--r-- | django/core/management/commands/shell.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/management/commands/shell.py b/django/core/management/commands/shell.py index de8f33ed84..506a69156c 100644 --- a/django/core/management/commands/shell.py +++ b/django/core/management/commands/shell.py @@ -59,7 +59,7 @@ class Command(BaseCommand): # we already know 'readline' was imported successfully. import rlcompleter readline.set_completer(rlcompleter.Completer(imported_objects).complete) - # Enable tab completion on systems using libedit (e.g. Mac OSX). + # Enable tab completion on systems using libedit (e.g. macOS). # These lines are copied from Lib/site.py on Python 3.4. readline_doc = getattr(readline, '__doc__', '') if readline_doc is not None and 'libedit' in readline_doc: |
