summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Waldron <rwaldron@github.com>2013-04-18 14:42:50 -0500
committerGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2013-04-25 07:18:50 +0200
commita859a2efbad135fd2f2106618195604691489f0e (patch)
treeb8345e6f195b579d9f16ecd535bbe3d2603ad132
parent0755e61741a0a251bd1b8429d80a341861e956c2 (diff)
Fix multibyte char in rake task
-rw-r--r--tasks/plugin.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/tasks/plugin.rake b/tasks/plugin.rake
index 2a572786..ffdb23de 100644
--- a/tasks/plugin.rake
+++ b/tasks/plugin.rake
@@ -16,7 +16,7 @@ class #{class_name} < Plugin
when 'hello'
_("hello, this is an example topic of my new plugin! :)")
else
- _("#{plugin_name} plugin — topics: %{list}") % {
+ _("#{plugin_name} plugin - topics: %{list}") % {
:list => topics.join(", ")
}
end