Commit 2bd58aa5 by Muhammad Ammar

Merge pull request #10584 from edx/ammar/uninstall-django-storages

add django-storages into uninstall list
parents 835eccaf a6ec8cd2
......@@ -207,6 +207,11 @@ def uninstall_python_packages():
sh("pip uninstall -y edxval")
uninstalled = True
# Uninstall django-storages
if any("django-storages" in line for line in frozen):
sh("pip uninstall -y django-storages")
uninstalled = True
if not uninstalled:
break
else:
......
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