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
I found the issue, at least in my instance. I noticed this in your models.py value = value[4:-1] # remove prefix and %
But noticed in the error the % was still visible.
I changed it to value = value.strip()[4:-1] # remove prefix and %
and that seemed to work for me. I'm not sure how whitespace got in there, I entered the ip through the admin section of my django app, but there it is.
I feel foolish for not noticing earlier, pip install gets you 0.2.0 and not the release built off the master branch, which must have been updated after 11/2019.
First time user. I've setup my model as in the documentation, but attempting to save
192.168.0.1/24
as my test gets this result.My model
Using:
Is there something I'm missing
The text was updated successfully, but these errors were encountered: