commit | 554272743a597cfde468fbc0dd200859a6648b56 | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Fri Mar 12 09:57:43 2010 +0000 |
committer | Georg Brandl <georg@python.org> | Fri Mar 12 09:57:43 2010 +0000 |
tree | 08bc0511d449ec95ddc5f550a6f8dab49d7e22a1 | |
parent | ecfa08fdf8de5fc72d9dd891b9a6c443bdee897d [diff] |
Get rid of backticks.
diff --git a/Doc/faq/library.rst b/Doc/faq/library.rst index 9c458da..4b0c3d3 100644 --- a/Doc/faq/library.rst +++ b/Doc/faq/library.rst
@@ -205,7 +205,7 @@ 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)