From 7e6d80dd2ac5808221f1e097290e840897a47c68 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Tue, 3 Jul 2018 16:59:46 +0300 Subject: Change: force LC_ALL=C in the env This makes pushes to dna-api.com have fewer locale-not-found errors. --- hetznertool | 1 + 1 file changed, 1 insertion(+) 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() -- cgit v1.2.1