diff options
| author | Dan Davis <danizen@users.noreply.github.com> | 2019-02-13 13:59:44 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2019-02-13 13:59:44 -0500 |
| commit | 2bd8df243ac6fc35e58c9fe90b20c9e42519a5ac (patch) | |
| tree | 1f7507bfac4533ef651aa55a448e64f6ef94e19a /django/core/management/commands/loaddata.py | |
| parent | f63811f4813f0e0439e140a97eeba18a5017e858 (diff) | |
Fixed #30184 -- Removed ellipsis characters from shell output strings.
Partially reverted 50b8493581fea3d7137dd8db33bac7008868d23a (refs #29654)
to avoid a crash when the user shell doesn't support non-ASCII characters.
Diffstat (limited to 'django/core/management/commands/loaddata.py')
| -rw-r--r-- | django/core/management/commands/loaddata.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/django/core/management/commands/loaddata.py b/django/core/management/commands/loaddata.py index 40d75b58e4..5559225a80 100644 --- a/django/core/management/commands/loaddata.py +++ b/django/core/management/commands/loaddata.py @@ -226,7 +226,7 @@ class Command(BaseCommand): ser_fmts = serializers.get_public_serializer_formats() if ser_fmt is None else [ser_fmt] if self.verbosity >= 2: - self.stdout.write("Loading '%s' fixtures…" % fixture_name) + self.stdout.write("Loading '%s' fixtures..." % fixture_name) if os.path.isabs(fixture_name): fixture_dirs = [os.path.dirname(fixture_name)] @@ -247,7 +247,7 @@ class Command(BaseCommand): fixture_files = [] for fixture_dir in fixture_dirs: if self.verbosity >= 2: - self.stdout.write("Checking %s for fixtures…" % humanize(fixture_dir)) + self.stdout.write("Checking %s for fixtures..." % humanize(fixture_dir)) fixture_files_in_dir = [] path = os.path.join(fixture_dir, fixture_name) for candidate in glob.iglob(glob.escape(path) + '*'): |
