Commit a6ec8cd2 by muhammad-ammar

add django-storages into uninstall list

parent 835eccaf
......@@ -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