diff options
author | W. Trevor King <wking@drexel.edu> | 2009-11-20 17:07:57 -0500 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2009-11-20 17:07:57 -0500 |
commit | ccfd3f9b65eba4535d7975395dc689eea40b0547 (patch) | |
tree | 8ea85f827560129ad5c392e4a9320e9f58f27dc6 /libbe/subproc.py | |
parent | ec602165cca450dab09ff79f5baf90e8957535d4 (diff) | |
download | bugseverywhere-ccfd3f9b65eba4535d7975395dc689eea40b0547.tar.gz |
Import os in libbe.subproc if _POSIX == True
Diffstat (limited to 'libbe/subproc.py')
-rw-r--r-- | libbe/subproc.py | 1 |
1 files changed, 1 insertions, 0 deletions
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): |