diff options
| author | glebov-da <[email protected]> | 2022-02-10 16:51:01 +0300 | 
|---|---|---|
| committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:51:01 +0300 | 
| commit | 3abdc72be9915fd7419fd20148412ecfe81013c3 (patch) | |
| tree | bad2ff41be634e38ae36d0e661ef6863254fc021 /library/python/testing | |
| parent | ef816e357a808af26c5d733615158b8c7b2b97f6 (diff) | |
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'library/python/testing')
| -rw-r--r-- | library/python/testing/yatest_common/ya.make | 12 | ||||
| -rw-r--r-- | library/python/testing/yatest_common/yatest/common/process.py | 4 | 
2 files changed, 8 insertions, 8 deletions
diff --git a/library/python/testing/yatest_common/ya.make b/library/python/testing/yatest_common/ya.make index 5662db4c5d3..44b230bb6dd 100644 --- a/library/python/testing/yatest_common/ya.make +++ b/library/python/testing/yatest_common/ya.make @@ -31,10 +31,10 @@ PEERDIR(      library/python/fs  ) -IF (NOT CATBOOST_OPENSOURCE) -    PEERDIR( -        library/python/coredump_filter -    ) -ENDIF() - +IF (NOT CATBOOST_OPENSOURCE)  +    PEERDIR(  +        library/python/coredump_filter  +    )  +ENDIF()  +   END() diff --git a/library/python/testing/yatest_common/yatest/common/process.py b/library/python/testing/yatest_common/yatest/common/process.py index a8bcc21f518..3050151cf54 100644 --- a/library/python/testing/yatest_common/yatest/common/process.py +++ b/library/python/testing/yatest_common/yatest/common/process.py @@ -707,9 +707,9 @@ def check_glibc_version(binary_path):  def backtrace_to_html(bt_filename, output):      try: -        from library.python import coredump_filter +        from library.python import coredump_filter           with open(output, "wb") as afile: -            coredump_filter.filter_stackdump(bt_filename, stream=afile) +            coredump_filter.filter_stackdump(bt_filename, stream=afile)       except ImportError as e:          yatest_logger.debug("Failed to import coredump_filter: %s", e)          with open(output, "wb") as afile:  | 
