Update plugins/dictionary.py
This commit is contained in:
parent
3a14d78daa
commit
42384f9981
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ def urban(inp):
|
||||||
|
|
||||||
# try getting the requested definition
|
# try getting the requested definition
|
||||||
try:
|
try:
|
||||||
out = "(%s/%s) %s: %s" % \
|
out = "[%s/%s] %s: %s" % \
|
||||||
(str(id), str(len(defs)), defs[id-1]['word'], defs[id-1]['definition'])
|
(str(id), str(len(defs)), defs[id-1]['word'], defs[id-1]['definition'])
|
||||||
except IndexError:
|
except IndexError:
|
||||||
return 'Not found.'
|
return 'Not found.'
|
||||||
|
|
Reference in a new issue