Bugfixes in install command

This commit is contained in:
Sven Heidemann 2021-03-16 22:55:00 +01:00
parent a12a54f671
commit 3764f2d5bd

View File

@ -80,7 +80,7 @@ class InstallService(CommandABC):
return return
package_version = '' package_version = ''
name = '' name = package
if '==' in package: if '==' in package:
name = package.split('==')[0] name = package.split('==')[0]
package_version = package.split('==')[1] package_version = package.split('==')[1]