summaryrefslogtreecommitdiff
path: root/plugins/translate.py
diff options
context:
space:
mode:
authorTodd Eisenberger <todd@teisen.be>2011-09-27 10:15:15 -0700
committerTodd Eisenberger <todd@teisen.be>2011-09-27 10:15:15 -0700
commit5dea3dcf800d2588732d0d217429e1d7402208fc (patch)
tree8fb7412fe7d194ff68e689d43f3dde03477c6836 /plugins/translate.py
parent7b8a860de95f2af6855b1ba270e677a0eb4c044c (diff)
downloadpoezio-5dea3dcf800d2588732d0d217429e1d7402208fc.tar.gz
poezio-5dea3dcf800d2588732d0d217429e1d7402208fc.tar.bz2
poezio-5dea3dcf800d2588732d0d217429e1d7402208fc.tar.xz
poezio-5dea3dcf800d2588732d0d217429e1d7402208fc.zip
Add day_change plugin, make translate update right away
Diffstat (limited to 'plugins/translate.py')
-rw-r--r--plugins/translate.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/translate.py b/plugins/translate.py
index 625d78e7..880c8af1 100644
--- a/plugins/translate.py
+++ b/plugins/translate.py
@@ -28,6 +28,7 @@ class Plugin(BasePlugin):
text, lang = translate(body)
if lang != TARGET_LANG:
room.add_message(text, nickname=nick_from)
+ self.core.refresh_window()
except Exception as e:
import traceback
self.core.information("Exception in translator! %s" % (traceback.format_exc(),))