diff options
author | v-korovin <v-korovin@yandex-team.com> | 2024-09-26 10:35:27 +0300 |
---|---|---|
committer | v-korovin <v-korovin@yandex-team.com> | 2024-09-26 10:44:46 +0300 |
commit | c9843510b39357d5510030691beecfab56e3bd17 (patch) | |
tree | 990009b83044e936303dec6b770033b46f59c6fc /build/scripts/decimal_md5.py | |
parent | 1339bbde1687911362cf2a244869e30003508986 (diff) | |
download | ydb-c9843510b39357d5510030691beecfab56e3bd17.tar.gz |
futurize build/scripts
commit_hash:41fb885eb1e03094e65521671349e66f4225321b
Diffstat (limited to 'build/scripts/decimal_md5.py')
-rw-r--r-- | build/scripts/decimal_md5.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/build/scripts/decimal_md5.py b/build/scripts/decimal_md5.py index 684d39e767..2a125cca60 100644 --- a/build/scripts/decimal_md5.py +++ b/build/scripts/decimal_md5.py @@ -1,6 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +from __future__ import print_function import hashlib import struct import sys @@ -20,9 +21,9 @@ def ensure_paths_exist(paths): if not os.path.exists(path) ) if bad_paths: - print >> sys.stderr, "decimal_md5 inputs do not exist:" + print("decimal_md5 inputs do not exist:", file=sys.stderr) for path in bad_paths: - print >> sys.stderr, path + print(path, file=sys.stderr) sys.exit(1) |