diff options
author | Ryan Waldron <rwaldron@github.com> | 2013-04-18 14:42:50 -0500 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2013-04-25 07:18:50 +0200 |
commit | a859a2efbad135fd2f2106618195604691489f0e (patch) | |
tree | b8345e6f195b579d9f16ecd535bbe3d2603ad132 /tasks/plugin.rake | |
parent | 0755e61741a0a251bd1b8429d80a341861e956c2 (diff) |
Fix multibyte char in rake task
Diffstat (limited to 'tasks/plugin.rake')
-rw-r--r-- | tasks/plugin.rake | 2 |
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 |