Merge pull request #4012 from maxalbert/fix-docstring-typo

Fix typo in docstring
This commit is contained in:
Ankit Goel 2018-09-21 22:07:57 +05:30 committed by GitHub
commit 58aa4f91f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -219,8 +219,8 @@ class MonkeyPatch(object):
self.setitem(os.environ, name, value)
def delenv(self, name, raising=True):
""" Delete ``name`` from the environment. Raise KeyError it does not
exist.
""" Delete ``name`` from the environment. Raise KeyError if it does
not exist.
If ``raising`` is set to False, no exception will be raised if the
environment variable is missing.