summaryrefslogtreecommitdiffstats
path: root/lib/bb/ui/uievent.py
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2009-05-11 06:13:00 +0000
committerHolger Hans Peter Freyther <zecke@selfish.org>2009-05-11 06:13:00 +0000
commit667bf5b303718f604afa06a3f2f5f7608005c096 (patch)
tree1fa6b84e1020361e38d028badbf5925a4b3ee557 /lib/bb/ui/uievent.py
parent08486ea715c8f5e48dfa8936326df5261ba3f5cb (diff)
downloadbitbake-667bf5b303718f604afa06a3f2f5f7608005c096.tar.gz
[ui] Fix import statements reported by pyflakes
We ignore the following kind of warnings import gtk import gtk.glade... as glade is not imported by default and need that extra line, pyflakes does not know...
Diffstat (limited to 'lib/bb/ui/uievent.py')
-rw-r--r--lib/bb/ui/uievent.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/ui/uievent.py b/lib/bb/ui/uievent.py
index 9d724d7fc..476eb4c59 100644
--- a/lib/bb/ui/uievent.py
+++ b/lib/bb/ui/uievent.py
@@ -24,7 +24,7 @@ server and queue them for the UI to process. This process must be used to avoid
client/server deadlocks.
"""
-import sys, socket, threading
+import socket, threading
from SimpleXMLRPCServer import SimpleXMLRPCServer, SimpleXMLRPCRequestHandler
class BBUIEventQueue: