diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-08-31 21:09:40 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-08-31 21:09:40 +0200 |
commit | 26961676bf2bada721a5d7e69dadac00820a0cfa (patch) | |
tree | 09ec684fed2285925e965cc8a31badbaddc96dd4 /pyLoadCli.py | |
parent | cleanup (diff) | |
download | pyload-26961676bf2bada721a5d7e69dadac00820a0cfa.tar.xz |
encoding fix, locale cleanup
Diffstat (limited to 'pyLoadCli.py')
-rwxr-xr-x | pyLoadCli.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyLoadCli.py b/pyLoadCli.py index bab5c360e..da261a070 100755 --- a/pyLoadCli.py +++ b/pyLoadCli.py @@ -469,7 +469,7 @@ def print_help(): if __name__ == "__main__": config = ConfigParser() - translation = gettext.translation("pyLoadCli", join(pypath, "locale"), languages=[config['general']['language']]) + translation = gettext.translation("pyLoadCli", join(pypath, "locale"), languages=["en", config['general']['language']]) translation.install(unicode=True) server_url = "" |