summaryrefslogtreecommitdiff
path: root/pygments/formatters/other.py
diff options
context:
space:
mode:
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()