aboutsummaryrefslogtreecommitdiffstats
path: root/libbe
diff options
context:
space:
mode:
authorW. Trevor King <wking@drexel.edu>2009-11-20 17:07:57 -0500
committerW. Trevor King <wking@drexel.edu>2009-11-20 17:07:57 -0500
commitccfd3f9b65eba4535d7975395dc689eea40b0547 (patch)
tree8ea85f827560129ad5c392e4a9320e9f58f27dc6 /libbe
parentec602165cca450dab09ff79f5baf90e8957535d4 (diff)
downloadbugseverywhere-ccfd3f9b65eba4535d7975395dc689eea40b0547.tar.gz
Import os in libbe.subproc if _POSIX == True
Diffstat (limited to 'libbe')
-rw-r--r--libbe/subproc.py1
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):