Kaydet (Commit) ff52286d authored tarafından Michael W. Hudson's avatar Michael W. Hudson

Fix test_site to not call open('...', 'wU'), as that now raises an error.

Is anyone running the test suite regularly at the moment?
üst 631bfe60
......@@ -117,7 +117,7 @@ class PthFile(object):
Make sure to call self.cleanup() to undo anything done by this method.
"""
FILE = open(self.file_path, 'wU')
FILE = open(self.file_path, 'w')
try:
print>>FILE, "#import @bad module name"
print>>FILE, "\n"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment