summaryrefslogtreecommitdiff
path: root/cherrypy/process/plugins.py
diff options
context:
space:
mode:
authorSviatoslav Sydorenko <wk@sydorenko.org.ua>2017-03-11 22:14:07 +0200
committerSviatoslav Sydorenko <wk@sydorenko.org.ua>2017-03-11 22:14:07 +0200
commit54b35f2a9e7191bc4a3002281e1044983dc0a45d (patch)
tree07c837311c39956bd7ef5b5412cbd5972213fe0f /cherrypy/process/plugins.py
parentde623670070388f192df8a0c80d123f8aba71411 (diff)
downloadcherrypy-git-54b35f2a9e7191bc4a3002281e1044983dc0a45d.tar.gz
PEP8fy codebase: eliminated E303 flake8 error
Diffstat (limited to 'cherrypy/process/plugins.py')
-rw-r--r--cherrypy/process/plugins.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/cherrypy/process/plugins.py b/cherrypy/process/plugins.py
index 2fddc0bf..a94c3cd5 100644
--- a/cherrypy/process/plugins.py
+++ b/cherrypy/process/plugins.py
@@ -112,7 +112,6 @@ class SignalHandler(object):
# used to determine is the process is a daemon in `self._is_daemonized`
self._original_pid = os.getpid()
-
def _jython_SIGINT_handler(self, signum=None, frame=None):
# See http://bugs.jython.org/issue1313
self.bus.log('Keyboard Interrupt: shutting down bus')
@@ -136,7 +135,6 @@ class SignalHandler(object):
not os.isatty(sys.stdin.fileno())
)
-
def subscribe(self):
"""Subscribe self.handlers to signals."""
for sig, func in self.handlers.items():