diff options
author | tobo <tobo@yandex-team.ru> | 2022-02-10 16:47:27 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:47:27 +0300 |
commit | 7fe839092527589b38f014d854c51565b3c1adfa (patch) | |
tree | 309e97022d3530044b712b8f71318c78faf7856e /build/plugins | |
parent | d0d68c395c10da4cb56a1c845504570a04d7893e (diff) | |
download | ydb-7fe839092527589b38f014d854c51565b3c1adfa.tar.gz |
Restoring authorship annotation for <tobo@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'build/plugins')
-rw-r--r-- | build/plugins/_common.py | 4 | ||||
-rw-r--r-- | build/plugins/res.py | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/build/plugins/_common.py b/build/plugins/_common.py index 2f831a94db..bcc8c5e5c0 100644 --- a/build/plugins/_common.py +++ b/build/plugins/_common.py @@ -1,6 +1,6 @@ import sys import hashlib -import base64 +import base64 class Result(object): @@ -22,7 +22,7 @@ def lazy(func): def pathid(path): - return base64.b32encode(hashlib.md5(path).digest()).lower().strip('=') + return base64.b32encode(hashlib.md5(path).digest()).lower().strip('=') def listid(l): diff --git a/build/plugins/res.py b/build/plugins/res.py index a937caba81..6541972593 100644 --- a/build/plugins/res.py +++ b/build/plugins/res.py @@ -41,7 +41,7 @@ def onfat_resource(unit, *args): # we make several calls of rescompiler # https://msdn.microsoft.com/ru-ru/library/windows/desktop/ms682425.aspx for part_args in split(args, 8000): - output = listid(part_args) + '.cpp' + output = listid(part_args) + '.cpp' inputs = [x for x, y in iterpair(part_args) if x != '-'] if inputs: inputs = ['IN'] + inputs |