From 827e08d1fe94ab5cd2db9d2f8fd5d53d0cceff9d Mon Sep 17 00:00:00 2001 From: Ian Norton Date: Fri, 8 Jan 2016 11:11:36 +0000 Subject: [PATCH] typo in PLUGINS readme --- PLUGINS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PLUGINS.md b/PLUGINS.md index 628131eb..727407ce 100644 --- a/PLUGINS.md +++ b/PLUGINS.md @@ -55,7 +55,7 @@ def plugin_app(parent): tk.Label(status, text="Status:").grid(row=0, column=0) - # after this your even functions can directly update plugin_app.status["text"] + # after this your event functions can directly update plugin_app.status["text"] plugin_app.status = tk.Label(status, text="Happy!") plugin_app.status.grid(row=0, column=1) plugin_app.status = None