Skip to content

Commit c34a006

Browse files
committed
Fix Django 1.3 compatibility issue
1 parent 8631c7c commit c34a006

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

push_notifications/fields.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def db_type(self, connection):
5454
elif engine == "django.db.backends.sqlite":
5555
return "UNSIGNED BIG INT"
5656
else:
57-
return super(HexIntegerField, self).db_type(connection)
57+
return super(HexIntegerField, self).db_type(connection=connection)
5858

5959
def get_prep_value(self, value):
6060
if value is None or value == "":

0 commit comments

Comments
 (0)