summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2018-07-03 16:59:46 +0300
committerLars Wirzenius <liw@liw.fi>2018-07-03 16:59:46 +0300
commit7e6d80dd2ac5808221f1e097290e840897a47c68 (patch)
tree6eedf858c8d40f626a2cd4a9b7b9d8cdd6dddb38
parentb91ca3d8406834c21d207a106c5b59a7eb7f644e (diff)
downloadhetznertool-7e6d80dd2ac5808221f1e097290e840897a47c68.tar.gz
Change: force LC_ALL=C in the env
This makes pushes to dna-api.com have fewer locale-not-found errors.
-rwxr-xr-xhetznertool1
1 files changed, 1 insertions, 0 deletions
diff --git a/hetznertool b/hetznertool
index 8f077c9..cb3ba2b 100755
--- a/hetznertool
+++ b/hetznertool
@@ -54,6 +54,7 @@ class HetznerTool:
sys.stderr.write('ERROR: {}\n'.format(str(e)))
def main(self):
+ os.environ['LC_ALL'] = 'C'
config = self.create_config()
parser = Parser(config)
parser.execute()