aboutsummaryrefslogtreecommitdiffstats
path: root/build/scripts/fetch_from.py
diff options
context:
space:
mode:
authorrobot-brewer <robot-brewer@yandex-team.com>2024-10-22 08:39:26 +0300
committerrobot-brewer <robot-brewer@yandex-team.com>2024-10-22 08:51:14 +0300
commit54a66b6ba4d7d5b11ad688e8072df4c2f107b3c9 (patch)
treee89b524f85c2b0a501fbfd5809aa52d322c0f110 /build/scripts/fetch_from.py
parentab5c8d6f28e47c9330ecc18cd748cf513fd243af (diff)
downloadydb-54a66b6ba4d7d5b11ad688e8072df4c2f107b3c9.tar.gz
Release python3-frozen #8
https://github.com/yandex/toolchain-registry/releases/tag/python3-frozen-v8 commit_hash:db14a768da738da2ea13bd7cb7af738d83793500
Diffstat (limited to 'build/scripts/fetch_from.py')
-rwxr-xr-xbuild/scripts/fetch_from.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/build/scripts/fetch_from.py b/build/scripts/fetch_from.py
index bd27d75d8e..0e543c810a 100755
--- a/build/scripts/fetch_from.py
+++ b/build/scripts/fetch_from.py
@@ -22,6 +22,9 @@ except (ImportError, ModuleNotFoundError):
# Python 3
import urllib.request as urllib_request
from urllib.error import HTTPError, URLError
+ # Explicitly enable local imports
+ # Don't forget to add imported scripts to inputs of the calling command!
+ sys.path.append(os.path.dirname(os.path.abspath(__file__)))
import retry