aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/__init__.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2016-09-04 19:30:10 -0400
committerJason R. Coombs <jaraco@jaraco.com>2016-09-04 19:30:10 -0400
commit443cabec148460b3a688923df1a63f689d1164c7 (patch)
treec0935d6336b46b63c48bb3ea9ae36b88844678e3 /setuptools/__init__.py
parent57a5c05e6f460260f1339dce37407c724ad4c5e8 (diff)
downloadexternal_python_setuptools-443cabec148460b3a688923df1a63f689d1164c7.tar.gz
external_python_setuptools-443cabec148460b3a688923df1a63f689d1164c7.tar.bz2
external_python_setuptools-443cabec148460b3a688923df1a63f689d1164c7.zip
Remove private prefix from monkey as monkey module explicitly declares that all functions are private.
Diffstat (limited to 'setuptools/__init__.py')
-rw-r--r--setuptools/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/__init__.py b/setuptools/__init__.py
index 0129658a..41b590d7 100644
--- a/setuptools/__init__.py
+++ b/setuptools/__init__.py
@@ -121,7 +121,7 @@ find_packages = PackageFinder.find
setup = distutils.core.setup
-_Command = monkey._get_unpatched(distutils.core.Command)
+_Command = monkey.get_unpatched(distutils.core.Command)
class Command(_Command):