Commit d3f9e1a7 by Ned Batchelder

Fix the uninstall of django-storages

parent bcf789bd
......@@ -208,7 +208,7 @@ def uninstall_python_packages():
uninstalled = True
# Uninstall django-storages
if any("django-storages" in line for line in frozen):
if any("django-storages==" in line for line in frozen):
sh("pip uninstall -y django-storages")
uninstalled = True
......
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