X-Git-Url: https://jxself.org/git/?p=super-star-trek.git;a=blobdiff_plain;f=sst.py;fp=sst.py;h=aa91753a9cb67f0c56bf9973c4499469b8c0a589;hp=b2067e965cfa4863bf58e7a9f9a03cf647363a6b;hb=86e3e6d44e6ce5185084ccafe421c38e6c7e7ca4;hpb=ca30e7b338e4335882d5059f8218086e34b256cd diff --git a/sst.py b/sst.py index b2067e9..aa91753 100755 --- a/sst.py +++ b/sst.py @@ -17,6 +17,7 @@ from __future__ import print_function, division import os, sys, math, curses, time, pickle, copy, gettext, getpass import getopt, socket, locale +import codecs # This import only works on Unixes. The intention is to enable # Ctrl-P, Ctrl-N, and friends in Cmd. @@ -3522,7 +3523,7 @@ def prouts(proutsline): def cgetline(): "Get a line of input." if game.options & OPTION_CURSES: - linein = curwnd.getstr() + "\n" + linein = codecs.decode(curwnd.getstr()) + "\n" curwnd.refresh() else: if replayfp and not replayfp.closed: