diff options
author | zubchick <zubchick@yandex-team.ru> | 2022-02-10 16:48:22 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:48:22 +0300 |
commit | dd8b8ab59eaee9938ca16f368506d69ef2509b74 (patch) | |
tree | 5c9577458a79ca3e1acff2fd150ca398031a66e7 /contrib/python/pytest | |
parent | 01fa2667d0e5e868b18424bc1906146e5ee340db (diff) | |
download | ydb-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.py | 2 |
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))) ) ) |