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
{{ message }}
This repository was archived by the owner on May 12, 2022. It is now read-only.
I had problems updating the data base in a Kali 2017.3 machine using a Docker machine as Postgres DB:
The value of the version variable of my machine was:
I solved this patching the line 46 of /usr/local/lib/python3.6/dist-packages/asyncpg/serverversion.py
I changed:
from: [int(p) for p in parts][:3]
to: versions = [int(''.join(s for s in str(p) if s.isdigit())) for p in parts[:3]]