diff options
author | kakabba <kakabba@yandex-team.ru> | 2022-02-10 16:46:04 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:04 +0300 |
commit | c8e3995898c443e78266f7420aac5fb3da15d413 (patch) | |
tree | a530e068cc107e227deccc80722204db63a4d75d /build/scripts/cat.py | |
parent | 110a978b66fe6c0916572df51cfead2a9b647174 (diff) | |
download | ydb-c8e3995898c443e78266f7420aac5fb3da15d413.tar.gz |
Restoring authorship annotation for <kakabba@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'build/scripts/cat.py')
-rwxr-xr-x | build/scripts/cat.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/scripts/cat.py b/build/scripts/cat.py index 0c3f73d96f..8d83194263 100755 --- a/build/scripts/cat.py +++ b/build/scripts/cat.py @@ -1,13 +1,13 @@ #!/usr/bin/env python import sys from shutil import copyfileobj as copy -import os.path +import os.path if __name__ == '__main__': for filename in sys.argv[1:] or ["-"]: if filename == "-": copy(sys.stdin, sys.stdout) - else: + else: if os.path.exists(filename): with open(filename, 'rb') as file: copy(file, sys.stdout) |