summaryrefslogtreecommitdiff
path: root/shellutils.py
diff options
context:
space:
mode:
authorEmile Anclin <emile.anclin@logilab.fr>2010-09-21 15:00:17 +0200
committerEmile Anclin <emile.anclin@logilab.fr>2010-09-21 15:00:17 +0200
commita8ae81eed215104745f9b13599d7b648e711732a (patch)
treed4df60b6ad7d82ea9aaa5e4776afbd743f9b1829 /shellutils.py
parente5c13b05080459f7fb3c25d9c2ccbdd00f188df6 (diff)
downloadlogilab-common-a8ae81eed215104745f9b13599d7b648e711732a.tar.gz
[py3k] define raw_input for py3.x
Diffstat (limited to 'shellutils.py')
-rw-r--r--shellutils.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/shellutils.py b/shellutils.py
index 7180b5e..2f6e85a 100644
--- a/shellutils.py
+++ b/shellutils.py
@@ -32,6 +32,8 @@ import errno
from os.path import exists, isdir, islink, basename, join
from logilab.common import STD_BLACKLIST, _handle_blacklist
+from logilab.common.compat import raw_input
+
try:
from logilab.common.proc import ProcInfo, NoSuchProcess
except ImportError: