aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2025-08-04 10:58:40 +0200
committerThomas Voss <mail@thomasvoss.com> 2025-08-04 10:58:40 +0200
commit3e27bb55ff6118c442bfbc4305acb7ef9c364a20 (patch)
tree506dbb00d665529a9452dd2ed984688e42c7a63e /src
parent4ba4a7c2fc0263c95d24a6bf40e42e4a39ae244e (diff)
Use /usr/bin/env
Diffstat (limited to 'src')
-rwxr-xr-xsrc/i18n/gen.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/i18n/gen.py b/src/i18n/gen.py
index 9404644..9271cc0 100755
--- a/src/i18n/gen.py
+++ b/src/i18n/gen.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python3
+#!/usr/bin/env python3
import concurrent.futures
import dataclasses
@@ -169,4 +169,4 @@ def val_to_go(x: Any) -> str:
if __name__ == "__main__":
os.chdir(os.path.dirname(sys.argv[0]))
- sys.exit(main()) \ No newline at end of file
+ sys.exit(main())