aboutsummaryrefslogtreecommitdiffhomepage
path: root/aux/enabled-languages
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 /aux/enabled-languages
parent4ba4a7c2fc0263c95d24a6bf40e42e4a39ae244e (diff)
Use /usr/bin/env
Diffstat (limited to 'aux/enabled-languages')
-rwxr-xr-xaux/enabled-languages4
1 files changed, 2 insertions, 2 deletions
diff --git a/aux/enabled-languages b/aux/enabled-languages
index df03c40..f4aa5b5 100755
--- a/aux/enabled-languages
+++ b/aux/enabled-languages
@@ -1,4 +1,4 @@
-#!/usr/bin/python3
+#!/usr/bin/env python3
import os
import sys
@@ -8,4 +8,4 @@ sys.path.append("..")
import src.i18n.gen
-print(" ".join(x.bcp for x in src.i18n.gen.LOCALES if x.enabledp)) \ No newline at end of file
+print(" ".join(x.bcp for x in src.i18n.gen.LOCALES if x.enabledp))