summaryrefslogtreecommitdiff
path: root/cherrypy/process/plugins.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2015-12-19 23:22:16 -0500
committerJason R. Coombs <jaraco@jaraco.com>2015-12-19 23:22:16 -0500
commit499ae613b9ed703ef4cd0bc320ae30160ec47b5e (patch)
tree78269e605cacd2a7e93aaa51961a677045dd0262 /cherrypy/process/plugins.py
parent5ff70ed8021cfbcd26672222dcdf0c969c1b52ee (diff)
downloadcherrypy-git-499ae613b9ed703ef4cd0bc320ae30160ec47b5e.tar.gz
Simply get set from builtins
Diffstat (limited to 'cherrypy/process/plugins.py')
-rw-r--r--cherrypy/process/plugins.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cherrypy/process/plugins.py b/cherrypy/process/plugins.py
index c787ba92..2bf07776 100644
--- a/cherrypy/process/plugins.py
+++ b/cherrypy/process/plugins.py
@@ -8,7 +8,7 @@ import time
import threading
from cherrypy._cpcompat import basestring, get_daemon, get_thread_ident
-from cherrypy._cpcompat import ntob, set, Timer, SetDaemonProperty
+from cherrypy._cpcompat import ntob, Timer, SetDaemonProperty
# _module__file__base is used by Autoreload to make
# absolute any filenames retrieved from sys.modules which are not
@@ -200,7 +200,7 @@ class DropPrivileges(SimplePlugin):
"""Drop privileges. uid/gid arguments not available on Windows.
- Special thanks to `Gavin Baker <http://antonym.org/2005/12/dropping-privileges-in-python.html>`_
+ Special thanks to `Gavin Baker <http://antonym.org/2005/12/dropping-privileges-in-python.html>`_
"""
def __init__(self, bus, umask=None, uid=None, gid=None):