summaryrefslogtreecommitdiff
path: root/django/db/backends/postgresql/schema.py
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2019-03-27 12:15:53 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2019-03-28 10:00:12 +0100
commit881362986a1ee8f650752de8471a895890b71f96 (patch)
treefebe869f52c7091f07029aef165ffcdd2da2ed24 /django/db/backends/postgresql/schema.py
parent9ab1d5559681d3adde4fcfc98a19a7396ed6a42e (diff)
downloaddjango-881362986a1ee8f650752de8471a895890b71f96.tar.gz
Fixed "byte string" typo in various docs and comments.
Diffstat (limited to 'django/db/backends/postgresql/schema.py')
-rw-r--r--django/db/backends/postgresql/schema.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/backends/postgresql/schema.py b/django/db/backends/postgresql/schema.py
index 6c27bdc2ec..f0df8ad570 100644
--- a/django/db/backends/postgresql/schema.py
+++ b/django/db/backends/postgresql/schema.py
@@ -23,7 +23,7 @@ class DatabaseSchemaEditor(BaseDatabaseSchemaEditor):
sql_delete_procedure = 'DROP FUNCTION %(procedure)s(%(param_types)s)'
def quote_value(self, value):
- # getquoted() returns a quoted byte string of the adapted value.
+ # getquoted() returns a quoted bytestring of the adapted value.
return psycopg2.extensions.adapt(value).getquoted().decode()
def _field_indexes_sql(self, model, field):