From 7348f7cb9cee4024e8967521cc9063539bd8157d Mon Sep 17 00:00:00 2001 From: George Yoshida Date: Sun, 22 Mar 2015 07:41:40 -0700 Subject: [PATCH] Let `aws_completer` command account for LC_CTYPE of UTF-8 `aws` command had the same problem and was already fixed in #945. --- bin/aws_completer | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/aws_completer b/bin/aws_completer index b153e2af15ee..dba52dd56c5e 100755 --- a/bin/aws_completer +++ b/bin/aws_completer @@ -13,6 +13,8 @@ # language governing permissions and limitations under the License. import os +if os.environ.get('LC_CTYPE', '') == 'UTF-8': + os.environ['LC_CTYPE'] = 'en_US.UTF-8' import awscli.completer if __name__ == '__main__':