add missing docstring

This commit is contained in:
Ronny Pfannschmidt 2018-10-02 20:46:09 +02:00
parent ebd597b2fd
commit 36c2a101cb
1 changed files with 1 additions and 0 deletions

View File

@ -98,6 +98,7 @@ class TempdirFactory(object):
return py.path.local(self._tmppath_factory.mktemp(basename, numbered).resolve())
def getbasetemp(self):
"""backward compat wrapper for ``_tmppath_factory.getbasetemp``"""
return py.path.local(self._tmppath_factory.getbasetemp().resolve())
def finish(self):