summaryrefslogtreecommitdiff
path: root/pygments/formatters/other.py
diff options
context:
space:
mode:
authorgbrandl <devnull@localhost>2006-12-16 19:13:06 +0100
committergbrandl <devnull@localhost>2006-12-16 19:13:06 +0100
commitfefdc39f7959ff9f33509470dccac559ad09e1ae (patch)
tree7306a4dc0b310270eebf4c6a0796b27023b3d947 /pygments/formatters/other.py
parent05d0e660cbb25c7a5335a12b53dff1de111c6d71 (diff)
downloadpygments-fefdc39f7959ff9f33509470dccac559ad09e1ae.tar.gz
[svn] Fix double repr.
Diffstat (limited to 'pygments/formatters/other.py')
-rw-r--r--pygments/formatters/other.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pygments/formatters/other.py b/pygments/formatters/other.py
index b3abe9da..4d6bd204 100644
--- a/pygments/formatters/other.py
+++ b/pygments/formatters/other.py
@@ -67,8 +67,8 @@ class RawTokenFormatter(Formatter):
lastval += value
else:
if lasttype:
- write("%s\t%r\n" % (lasttype, lastval))
+ write("%s\t%s\n" % (lasttype, lastval))
lastval = value
lasttype = ttype
- write("%s\t%r\n" % (lasttype, lastval))
+ write("%s\t%s\n" % (lasttype, lastval))
flush()