diff options
author | iaz1607 <iaz1607@yandex-team.com> | 2023-11-30 12:16:39 +0300 |
---|---|---|
committer | iaz1607 <iaz1607@yandex-team.com> | 2023-11-30 12:56:46 +0300 |
commit | 8951ddf780e02616cdb2ec54a02bc354e8507c0f (patch) | |
tree | 478097488957d3b554e25868c972a959bb40d78e /build/scripts/collect_java_srcs.py | |
parent | a5acb7aa4ca5a4603215e878eb0cad786793262b (diff) | |
download | ydb-8951ddf780e02616cdb2ec54a02bc354e8507c0f.tar.gz |
`build/scripts` ya style --py
Diffstat (limited to 'build/scripts/collect_java_srcs.py')
-rw-r--r-- | build/scripts/collect_java_srcs.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/build/scripts/collect_java_srcs.py b/build/scripts/collect_java_srcs.py index 170002520a..f361f271d1 100644 --- a/build/scripts/collect_java_srcs.py +++ b/build/scripts/collect_java_srcs.py @@ -22,14 +22,14 @@ if __name__ == '__main__': else: # Outside root - print>>sys.stderr, 'External src file "{}" is outside of srcdir {}, ignore'.format( + print('External src file "{}" is outside of srcdir {}, ignore'.format( os.path.relpath(src, build_root), os.path.relpath(root, build_root), ) continue if os.path.exists(dst): - print>>sys.stderr, 'Duplicate external src file {}, choice is undefined'.format( + print >> sys.stderr, 'Duplicate external src file {}, choice is undefined'.format( os.path.relpath(dst, root) ) @@ -48,4 +48,4 @@ if __name__ == '__main__': zf.extractall(dst) else: - print>>sys.stderr, 'Unrecognized file type', os.path.relpath(src, build_root) + print >> sys.stderr, 'Unrecognized file type', os.path.relpath(src, build_root) |