From e47c52c9985540971374567b0af6a05f9bd971a1 Mon Sep 17 00:00:00 2001 From: David Diaz Date: Sun, 24 Dec 2017 15:15:28 -0600 Subject: [PATCH] Not sure where that import went. --- beau.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/beau.py b/beau.py index e509ff7..c8f6def 100644 --- a/beau.py +++ b/beau.py @@ -1,6 +1,7 @@ import json import platform import sublime_plugin +from threading import Thread from http.client import responses from sublime import load_settings, active_window from subprocess import check_output @@ -24,7 +25,7 @@ class BeauCommand(sublime_plugin.TextCommand): onComplete(proc) return - thread = threading.Thread(target=thread, args=(command, onComplete)) + thread = Thread(target=thread, args=(command, onComplete)) thread.start() return thread