Blame SOURCES/python-sphinx-testing-open-mode.patch

18abbb
diff --git a/src/sphinx_testing/path.py b/src/sphinx_testing/path.py
18abbb
index 60caf35..9e16a09 100644
18abbb
--- a/src/sphinx_testing/path.py
18abbb
+++ b/src/sphinx_testing/path.py
18abbb
@@ -156,7 +156,7 @@ class path(text_type):
18abbb
         """
18abbb
         Returns the text in the file.
18abbb
         """
18abbb
-        f = open(self, mode='U', **kwargs)
18abbb
+        f = open(self, **kwargs)
18abbb
         try:
18abbb
             return f.read()
18abbb
         finally: