diff options
author | Emile Anclin <emile.anclin@logilab.fr> | 2010-09-21 15:00:17 +0200 |
---|---|---|
committer | Emile Anclin <emile.anclin@logilab.fr> | 2010-09-21 15:00:17 +0200 |
commit | a8ae81eed215104745f9b13599d7b648e711732a (patch) | |
tree | d4df60b6ad7d82ea9aaa5e4776afbd743f9b1829 /shellutils.py | |
parent | e5c13b05080459f7fb3c25d9c2ccbdd00f188df6 (diff) | |
download | logilab-common-a8ae81eed215104745f9b13599d7b648e711732a.tar.gz |
[py3k] define raw_input for py3.x
Diffstat (limited to 'shellutils.py')
-rw-r--r-- | shellutils.py | 2 |
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: |