Fix typo in docstring
This commit is contained in:
parent
f02dbaf97f
commit
9b382ed16c
|
@ -219,8 +219,8 @@ class MonkeyPatch(object):
|
||||||
self.setitem(os.environ, name, value)
|
self.setitem(os.environ, name, value)
|
||||||
|
|
||||||
def delenv(self, name, raising=True):
|
def delenv(self, name, raising=True):
|
||||||
""" Delete ``name`` from the environment. Raise KeyError it does not
|
""" Delete ``name`` from the environment. Raise KeyError if it does
|
||||||
exist.
|
not exist.
|
||||||
|
|
||||||
If ``raising`` is set to False, no exception will be raised if the
|
If ``raising`` is set to False, no exception will be raised if the
|
||||||
environment variable is missing.
|
environment variable is missing.
|
||||||
|
|
Loading…
Reference in New Issue