summaryrefslogtreecommitdiffstats
path: root/lldb/utils/misc/grep-svn-log.py
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/utils/misc/grep-svn-log.py')
-rwxr-xr-xlldb/utils/misc/grep-svn-log.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/utils/misc/grep-svn-log.py b/lldb/utils/misc/grep-svn-log.py
index 2a9795e37be..a1490479200 100755
--- a/lldb/utils/misc/grep-svn-log.py
+++ b/lldb/utils/misc/grep-svn-log.py
@@ -13,7 +13,7 @@ from __future__ import print_function
import fileinput
import re
import sys
-import StringIO
+import io
# Separator string for "svn log -v" output.
separator = '-' * 72
@@ -23,7 +23,7 @@ Example:
svn log -v | grep-svn-log.py '^ D.+why_are_you_missing.h'"""
-class Log(StringIO.StringIO):
+class Log(io.StringIO):
"""Simple facade to keep track of the log content."""
def __init__(self):
OpenPOWER on IntegriCloud