aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/pytest
diff options
context:
space:
mode:
authorzubchick <zubchick@yandex-team.ru>2022-02-10 16:48:22 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:48:22 +0300
commitdd8b8ab59eaee9938ca16f368506d69ef2509b74 (patch)
tree5c9577458a79ca3e1acff2fd150ca398031a66e7 /contrib/python/pytest
parent01fa2667d0e5e868b18424bc1906146e5ee340db (diff)
downloadydb-dd8b8ab59eaee9938ca16f368506d69ef2509b74.tar.gz
Restoring authorship annotation for <zubchick@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'contrib/python/pytest')
-rw-r--r--contrib/python/pytest/py2/_pytest/tmpdir.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/python/pytest/py2/_pytest/tmpdir.py b/contrib/python/pytest/py2/_pytest/tmpdir.py
index a8a7037713..6ae95623e8 100644
--- a/contrib/python/pytest/py2/_pytest/tmpdir.py
+++ b/contrib/python/pytest/py2/_pytest/tmpdir.py
@@ -32,7 +32,7 @@ class TempPathFactory(object):
# using os.path.abspath() to get absolute path instead of resolve() as it
# does not work the same in all platforms (see #4427)
# Path.absolute() exists, but it is not public (see https://bugs.python.org/issue25012)
- converter=attr.converters.optional(
+ converter=attr.converters.optional(
lambda p: Path(os.path.abspath(six.text_type(p)))
)
)