summaryrefslogtreecommitdiff
path: root/Tools/Scripts/webkitpy/common/newstringio.py
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/Scripts/webkitpy/common/newstringio.py')
-rw-r--r--Tools/Scripts/webkitpy/common/newstringio.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/Scripts/webkitpy/common/newstringio.py b/Tools/Scripts/webkitpy/common/newstringio.py
index f6d08ec59..724fb11aa 100644
--- a/Tools/Scripts/webkitpy/common/newstringio.py
+++ b/Tools/Scripts/webkitpy/common/newstringio.py
@@ -29,10 +29,10 @@
"""'with'-compliant StringIO implementation."""
-import StringIO
+import StringIO as OldStringIO
-class StringIO(StringIO.StringIO):
+class StringIO(OldStringIO.StringIO):
def __enter__(self):
return self