Commit d58e65b4 by Cauê Baasch de Souza Committed by Sébastien Eustace

Fix remove's case insensitivity (#235)

parent 29d4f078
......@@ -39,7 +39,7 @@ list of installed packages
for key in poetry_content[section]:
if key.lower() == name.lower():
found = True
requirements[name] = poetry_content[section][name]
requirements[key] = poetry_content[section][key]
break
if not found:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment