From: Eevee Date: Tue, 25 Aug 2009 15:07:54 +0000 (-0700) Subject: Fix crash when stdin has no encoding. X-Git-Tag: veekun-promotions/2010050901~187 X-Git-Url: http://git.veekun.com/zzz-pokedex.git/commitdiff_plain/506824ccd64ac56746158ec0c8960cba884ca579?ds=sidebyside Fix crash when stdin has no encoding. --- diff --git a/pokedex/__init__.py b/pokedex/__init__.py index ccffaf2..6a4ab95 100644 --- a/pokedex/__init__.py +++ b/pokedex/__init__.py @@ -15,7 +15,7 @@ def main(): # XXX there must be a better way to get Unicode argv # XXX this doesn't work on Windows durp - enc = sys.stdin.encoding + enc = sys.stdin.encoding or 'utf8' args = [_.decode(enc) for _ in args] # Find the command as a function in this file