monkeypatch.chdir docstring punctuation

--HG--
branch : famousgarkin/monkeypatchchdir-docstring-punctuation-1430453576841
This commit is contained in:
famousgarkin 2015-05-01 04:13:06 +00:00
parent aa2ffb9805
commit 47936643c9
1 changed files with 2 additions and 2 deletions

View File

@ -177,8 +177,8 @@ class monkeypatch:
sys.path.insert(0, str(path))
def chdir(self, path):
""" Change the current working directory to the specified path
path can be a string or a py.path.local object
""" Change the current working directory to the specified path.
Path can be a string or a py.path.local object.
"""
if self._cwd is None:
self._cwd = os.getcwd()