summaryrefslogtreecommitdiff
path: root/docutils/test/alltests.py
diff options
context:
space:
mode:
authorgoodger <goodger@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2002-08-16 00:41:08 +0000
committergoodger <goodger@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2002-08-16 00:41:08 +0000
commit6ea8dbaaa8e68c74e38d73a8c962cc548840ea85 (patch)
tree7eb6d4bb94c770ccb5912e678cbd62db72d2c937 /docutils/test/alltests.py
parent3a32dd86af3c79fe91580805fa84068589d4ad27 (diff)
downloaddocutils-6ea8dbaaa8e68c74e38d73a8c962cc548840ea85.tar.gz
Don't need to encode output any more; DocutilsTestSupport does it now.
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@543 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
Diffstat (limited to 'docutils/test/alltests.py')
-rwxr-xr-xdocutils/test/alltests.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/docutils/test/alltests.py b/docutils/test/alltests.py
index a15451f83..ed16f095d 100755
--- a/docutils/test/alltests.py
+++ b/docutils/test/alltests.py
@@ -30,7 +30,6 @@ class Tee:
self.stream = stream
def write(self, string):
- string = string.encode('raw-unicode-escape')
self.stream.write(string)
self.file.write(string)