Skip to content

Commit

Permalink
Fix double prefix, whoops
Browse files Browse the repository at this point in the history
  • Loading branch information
dgw committed Mar 29, 2024
1 parent f376eb0 commit cce4b30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jisho.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
@plugin.example('.ji onsen')
def jisho(bot, trigger):
query = trigger.group(2) or None
bot.say("[Jisho] %s" % fetch_result(query))
bot.say(fetch_result(query))


def fetch_result(query):
Expand Down

0 comments on commit cce4b30

Please sign in to comment.