diff options
Diffstat (limited to 'django/core')
| -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 4b91c1b977..243680c591 100644 --- a/django/core/management/commands/shell.py +++ b/django/core/management/commands/shell.py @@ -52,7 +52,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 Python's Lib/site.py. readline_doc = getattr(readline, '__doc__', '') if readline_doc is not None and 'libedit' in readline_doc: |
