Skip to content

Commit

Permalink
Merge pull request #80 from xavier-lr/patch-1
Browse files Browse the repository at this point in the history
Compatibility with Django 3
  • Loading branch information
shimizukawa authored Sep 22, 2021
2 parents 8e662db + a88efdf commit fc0337e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django_redshift_backend/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def get_db_converters(self, expression):
converters.append(self.convert_uuidfield_value)
return converters

def convert_uuidfield_value(self, value, expression, connection, context):
def convert_uuidfield_value(self, value, expression, connection):
if value is not None:
value = uuid.UUID(value)
return value
Expand Down

0 comments on commit fc0337e

Please sign in to comment.