diff options
author | Thomas Voss <mail@thomasvoss.com> | 2025-08-02 03:56:36 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2025-08-02 03:56:36 +0200 |
commit | 4c16570fcade49fc93263195f7ae5dbae0687785 (patch) | |
tree | f850ee1f3f2de5a99dd86f96676bb2c3afc8fa58 | |
parent | 2a7f35ff39401301adf9d1ae221e5d7b14319b53 (diff) |
Use double quotes
-rwxr-xr-x | aux/enabled-languages | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/aux/enabled-languages b/aux/enabled-languages index 6023443..cc4ad94 100755 --- a/aux/enabled-languages +++ b/aux/enabled-languages @@ -4,8 +4,8 @@ import os import sys os.chdir(os.path.dirname(sys.argv[0])) -sys.path.append('..') +sys.path.append("..") import src.i18n.gen -print(' '.join(x.bcp for x in src.i18n.gen.LOCALES if x.enabled))
\ No newline at end of file +print(" ".join(x.bcp for x in src.i18n.gen.LOCALES if x.enabled))
\ No newline at end of file |