You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The bug is in models.py => es_syncdb_callback(), line 81: if int(get_version()[2]) > 6: returns False for django 1.10 and 1.11 as it gets 1 > 6 not 11 > 6...
The correct code (for support of django 1.10+ and django 2.0+) is:
v = get_version().split('.')
if int(v[0]) > 1 or int(v[1]) > 6
The text was updated successfully, but these errors were encountered:
The bug is in models.py => es_syncdb_callback(), line 81:
if int(get_version()[2]) > 6:
returns False for django 1.10 and 1.11 as it gets 1 > 6 not 11 > 6...The correct code (for support of django 1.10+ and django 2.0+) is:
The text was updated successfully, but these errors were encountered: