Commit ca94745c by Ned Batchelder

Merge pull request #10608 from edx/ned/dj18-fix-django-storages-uninstall

Fix the uninstall of django-storages
parents bcf789bd d3f9e1a7
......@@ -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