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/db/models/sql/query.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/db/models/sql/query.py')
| -rw-r--r-- | django/db/models/sql/query.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/models/sql/query.py b/django/db/models/sql/query.py index 5574941ef5..2e4c6c35af 100644 --- a/django/db/models/sql/query.py +++ b/django/db/models/sql/query.py @@ -597,7 +597,7 @@ class Query: # really make sense (or return consistent value sets). Not worth # the extra complexity when you can write a real query instead. if self.extra and rhs.extra: - raise ValueError("When merging querysets using 'or', you cannot have extra(select=…) on both sides.") + raise ValueError("When merging querysets using 'or', you cannot have extra(select=...) on both sides.") self.extra.update(rhs.extra) extra_select_mask = set() if self.extra_select_mask is not None: |
