Added migrations to update command #114

This commit is contained in:
2022-09-19 22:59:21 +02:00
parent df3f9f0306
commit c52bf961e1
55 changed files with 266 additions and 90 deletions

View File

@@ -74,9 +74,8 @@ class Pip:
if result is None:
return None
for p in str(result.decode()).split('\n'):
if p == package:
if p.startswith(package):
return p
return None