diff options
author | svidyuk <svidyuk@yandex-team.ru> | 2022-02-10 16:47:12 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:47:12 +0300 |
commit | 287d7d8c4ffc811d1e51c756ecfb13b78f4ee62d (patch) | |
tree | 339adc63bce23800021202ae4a8328a843dc447a /build/scripts/find_and_tar.py | |
parent | e23df0602fedd83374b43b6137a296baa2aad3f6 (diff) | |
download | ydb-287d7d8c4ffc811d1e51c756ecfb13b78f4ee62d.tar.gz |
Restoring authorship annotation for <svidyuk@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'build/scripts/find_and_tar.py')
-rw-r--r-- | build/scripts/find_and_tar.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/scripts/find_and_tar.py b/build/scripts/find_and_tar.py index bc3478d4fdd..f251623c68c 100644 --- a/build/scripts/find_and_tar.py +++ b/build/scripts/find_and_tar.py @@ -12,7 +12,7 @@ def find_gcno(dirname, tail): def main(args): output = args[0] - tail = args[1] if len(args) > 1 else '' + tail = args[1] if len(args) > 1 else '' with tarfile.open(output, 'w:') as tf: for f in find_gcno(os.getcwd(), tail): tf.add(f) |