From: W. Trevor King Date: Fri, 20 Nov 2009 22:07:57 +0000 (-0500) Subject: Import os in libbe.subproc if _POSIX == True X-Git-Tag: 1.0.0~59^2~77^2~11 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=ccfd3f9b65eba4535d7975395dc689eea40b0547;p=be.git Import os in libbe.subproc if _POSIX == True --- diff --git a/libbe/subproc.py b/libbe/subproc.py index e925c62..3e58271 100644 --- a/libbe/subproc.py +++ b/libbe/subproc.py @@ -28,6 +28,7 @@ _MSWINDOWS = sys.platform == 'win32' _POSIX = not _MSWINDOWS if _POSIX == True: + import os import select class CommandError(Exception):