From 6d1df84c00d45d382a95347c9d6cf25c40de572e Mon Sep 17 00:00:00 2001 From: Mads Jensen Date: Sat, 30 Sep 2017 15:14:17 +0200 Subject: [PATCH] Corrected typos in BaseDatabaseOperations exception messages. --- django/db/backends/base/operations.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/django/db/backends/base/operations.py b/django/db/backends/base/operations.py index 1ddb1010ec..7bf0210bc6 100644 --- a/django/db/backends/base/operations.py +++ b/django/db/backends/base/operations.py @@ -104,13 +104,16 @@ class BaseDatabaseOperations: truncates the given date field field_name to a date object with only the given specificity. """ - raise NotImplementedError('subclasses of BaseDatabaseOperations may require a datetrunc_sql() method') + raise NotImplementedError('subclasses of BaseDatabaseOperations may require a date_trunc_sql() method.') def datetime_cast_date_sql(self, field_name, tzname): """ Return the SQL to cast a datetime value to date value. """ - raise NotImplementedError('subclasses of BaseDatabaseOperations may require a datetime_cast_date() method') + raise NotImplementedError( + 'subclasses of BaseDatabaseOperations may require a ' + 'datetime_cast_date_sql() method.' + ) def datetime_cast_time_sql(self, field_name, tzname): """