Fix: Avoid possible NameError

This commit is contained in:
Leonel Câmara
2019-03-07 20:26:15 +00:00
committed by GitHub
parent f60f931299
commit a339381a67

View File

@@ -8,7 +8,7 @@ try:
else:
import tkinter
except ImportError:
Tkinter = None
tkinter = None
class MessageBoxHandler(logging.Handler):