Index: cfe/trunk/tools/scan-view/bin/scan-view =================================================================== --- cfe/trunk/tools/scan-view/bin/scan-view +++ cfe/trunk/tools/scan-view/bin/scan-view @@ -7,7 +7,7 @@ import imp import os import posixpath -import thread +import threading import time import urllib import webbrowser @@ -135,7 +135,7 @@ # Kick off thread to wait for server and start web browser, if # requested. if args.startBrowser: - t = thread.start_new_thread(start_browser, (port, args)) + threading.Thread(target=start_browser, args=(port, args)).start() run(port, args, args.root)