Skip to content
Snippets Groups Projects
Commit 1e20f171 authored by Marko Petric's avatar Marko Petric Committed by Andre Sailer
Browse files

replace raw_input with input from six.moves

parent 572aa2d0
No related branches found
No related tags found
No related merge requests found
...@@ -12,6 +12,7 @@ ...@@ -12,6 +12,7 @@
from __future__ import absolute_import, unicode_literals from __future__ import absolute_import, unicode_literals
import os, sys, optparse, logging import os, sys, optparse, logging
from six.moves import input
logging.basicConfig(format='%(levelname)s: %(message)s') logging.basicConfig(format='%(levelname)s: %(message)s')
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)
...@@ -97,7 +98,7 @@ class ComponentDumper: ...@@ -97,7 +98,7 @@ class ComponentDumper:
ret = 'D' ret = 'D'
if interactive: if interactive:
try: try:
ret = raw_input("<CR> to DUMP the list of components \n"+ ret = input("<CR> to DUMP the list of components \n"+
"<Q> to QUIT \n"+ "<Q> to QUIT \n"+
"<D> to DUMP the list of components \n"+ "<D> to DUMP the list of components \n"+
"<S> to SKIP this particular library\n"+ "<S> to SKIP this particular library\n"+
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment