From: Aaron Bentley Date: Thu, 26 Jan 2006 15:39:13 +0000 (-0500) Subject: Auto-decode user input to unicode X-Git-Tag: 1.0.0~228 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=b0645fe0c6295c70c73b44d972ab48b304043461;p=be.git Auto-decode user input to unicode --- diff --git a/libbe/cmdutil.py b/libbe/cmdutil.py index ca28cdf..2f24490 100644 --- a/libbe/cmdutil.py +++ b/libbe/cmdutil.py @@ -16,6 +16,7 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA import bugdir import plugin +import locale import os import optparse import utility @@ -98,7 +99,8 @@ def get_command(command_name): return cmd def execute(cmd, args): - return get_command(cmd).execute(args) + encoding = locale.getpreferredencoding() or 'ascii' + return get_command(cmd).execute([a.decode(encoding) for a in args]) def help(cmd): return get_command(cmd).help()