1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed "byte string" typo in various docs and comments.

This commit is contained in:
Mariusz Felisiak
2019-03-27 12:15:53 +01:00
parent 9ab1d55596
commit 881362986a
8 changed files with 11 additions and 11 deletions

View File

@@ -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):