Get rid of backticks.

This commit is contained in:
Georg Brandl 2010-03-12 09:57:43 +00:00
parent ecfa08fdf8
commit 554272743a
1 changed files with 1 additions and 1 deletions

View File

@ -205,7 +205,7 @@ without curses::
while 1:
try:
c = sys.stdin.read(1)
print "Got character", `c`
print "Got character", repr(c)
except IOError: pass
finally:
termios.tcsetattr(fd, termios.TCSAFLUSH, oldterm)