aboutsummaryrefslogtreecommitdiffstats
path: root/pathod/utils.py
diff options
context:
space:
mode:
authorThomas Kriechbaumer <thomas@kriechbaumer.name>2016-03-27 12:02:41 +0200
committerThomas Kriechbaumer <thomas@kriechbaumer.name>2016-03-27 12:02:41 +0200
commitec68d8b8e4a9fc24e45379359f96b3ebc30e381a (patch)
tree8a37b879502b5a6e68f02a374761481241f6dd5d /pathod/utils.py
parentab7e80085af891c494bc274c0cde27d49f89f254 (diff)
downloadmitmproxy-ec68d8b8e4a9fc24e45379359f96b3ebc30e381a.tar.gz
mitmproxy-ec68d8b8e4a9fc24e45379359f96b3ebc30e381a.tar.bz2
mitmproxy-ec68d8b8e4a9fc24e45379359f96b3ebc30e381a.zip
s/nocover/no cover/g
according to coveralls docs
Diffstat (limited to 'pathod/utils.py')
-rw-r--r--pathod/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pathod/utils.py b/pathod/utils.py
index a1109a3c..1e5bd9a4 100644
--- a/pathod/utils.py
+++ b/pathod/utils.py
@@ -98,7 +98,7 @@ class Data(object):
data = Data(__name__)
-def daemonize(stdin='/dev/null', stdout='/dev/null', stderr='/dev/null'): # pragma: nocover
+def daemonize(stdin='/dev/null', stdout='/dev/null', stderr='/dev/null'): # pragma: no cover
try:
pid = os.fork()
if pid > 0: