Improving error reporting on wx import errors.

This commit is contained in:
Cas Cremers
2012-04-26 14:27:00 +02:00
parent 5b985af776
commit 3a6d65463f
2 changed files with 28 additions and 7 deletions

View File

@@ -144,7 +144,7 @@ def panic(text):
print text
root = Tkinter.Tk()
w = Tkinter.Label(root, text=text)
w = Tkinter.Label(root, justify=Tkinter.LEFT, padx = 10, text=text)
w.pack()
root.mainloop()