summaryrefslogtreecommitdiffstats
path: root/build/scripts/fetch_from.py
diff options
context:
space:
mode:
authorrobot-brewer <[email protected]>2024-10-24 09:06:57 +0300
committerrobot-brewer <[email protected]>2024-10-24 09:19:34 +0300
commit0bb24f744b14da1f9afe0c8a2f8675d6ed3ba578 (patch)
tree0b8adfcb39bce1bee66f3a03b2316772568c04f8 /build/scripts/fetch_from.py
parentb5de966122980444f495696a79c988be76ccad99 (diff)
Release python3-frozen #10
https://github.com/yandex/toolchain-registry/releases/tag/python3-frozen-v10 commit_hash:c15fdff831efa24ba1f6711307408dd1c7a46b91
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 bd27d75d8ef..0e543c810a5 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