summaryrefslogtreecommitdiff
path: root/setuptools/command/develop.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2016-11-06 16:41:23 -0500
committerJason R. Coombs <jaraco@jaraco.com>2016-11-06 16:41:23 -0500
commit355603259aa37e424cf7466c3de6518375a935e3 (patch)
tree44882a2534fbdf9165d4491b5b1faa59c72f45de /setuptools/command/develop.py
parent14827711f669a830190313951ab5aef7b71ab2c6 (diff)
downloadpython-setuptools-git-355603259aa37e424cf7466c3de6518375a935e3.tar.gz
Add uninstall support for namespace packages
Diffstat (limited to 'setuptools/command/develop.py')
-rwxr-xr-xsetuptools/command/develop.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/setuptools/command/develop.py b/setuptools/command/develop.py
index 8de24fd7..aa82f959 100755
--- a/setuptools/command/develop.py
+++ b/setuptools/command/develop.py
@@ -31,6 +31,7 @@ class develop(namespaces.DevelopInstaller, easy_install):
if self.uninstall:
self.multi_version = True
self.uninstall_link()
+ self.uninstall_namespaces()
else:
self.install_for_development()
self.warn_deprecated_options()