summaryrefslogtreecommitdiffstats
path: root/bin/repoman
diff options
context:
space:
mode:
Diffstat (limited to 'bin/repoman')
-rwxr-xr-xbin/repoman3
1 files changed, 1 insertions, 2 deletions
diff --git a/bin/repoman b/bin/repoman
index 3e0203681..f1fbc2444 100755
--- a/bin/repoman
+++ b/bin/repoman
@@ -55,7 +55,6 @@ from portage import os
from portage import subprocess_getstatusoutput
from portage import _encodings
from portage import _unicode_encode
-from portage import StringIO
from repoman.checks import run_checks
from repoman import utilities
from repoman.herdbase import make_herd_base
@@ -2011,7 +2010,7 @@ if dofail or \
# in $EDITOR while the user creates a commit message.
# Otherwise, the user would not be able to see this output
# once the editor has taken over the screen.
-qa_output = StringIO()
+qa_output = io.StringIO()
style_file = ConsoleStyleFile(sys.stdout)
if options.mode == 'commit' and \
(not commitmessage or not commitmessage.strip()):