summaryrefslogtreecommitdiffstats
path: root/lib/bb/shell.py
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2006-05-06 13:45:38 +0000
committerHolger Hans Peter Freyther <zecke@selfish.org>2006-05-06 13:45:38 +0000
commit32abd610ea1661766a9f53b42de98f9ffba145f6 (patch)
treed5e8e2a5a361818caaecbcd37b37a09a33af50ae /lib/bb/shell.py
parentb708cf280fd1bc9566f822eeff4cc670a3ce28a0 (diff)
downloadbitbake-32abd610ea1661766a9f53b42de98f9ffba145f6.tar.gz
bitbake/lib/bb/shell.py:
No need to use imp on bin/bitbake
Diffstat (limited to 'lib/bb/shell.py')
-rw-r--r--lib/bb/shell.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/bb/shell.py b/lib/bb/shell.py
index defea94cb..6a25aaf46 100644
--- a/lib/bb/shell.py
+++ b/lib/bb/shell.py
@@ -56,8 +56,7 @@ try:
set
except NameError:
from sets import Set as set
-import sys, os, imp, readline, socket, httplib, urllib, commands, popen2, copy, shlex, Queue, fnmatch
-imp.load_source( "bitbake", os.path.dirname( sys.argv[0] )+"/bitbake" )
+import sys, os, readline, socket, httplib, urllib, commands, popen2, copy, shlex, Queue, fnmatch
from bb import data, parse, build, fatal
__version__ = "0.5.3.1"