I
'm OCD about formatting. 'nuff said
This commit is contained in:
parent
74fc62139c
commit
29ac513c2b
1 changed files with 3 additions and 3 deletions
|
@ -41,7 +41,7 @@ def rdio(inp, bot=None):
|
||||||
else: #Artist
|
else: #Artist
|
||||||
name = info['name']
|
name = info['name']
|
||||||
url = info['shortUrl']
|
url = info['shortUrl']
|
||||||
return u"\x02{}\x02 {}".format(name, url)
|
return u"\x02{}\x02 - {}".format(name, url)
|
||||||
|
|
||||||
|
|
||||||
@hook.command
|
@hook.command
|
||||||
|
@ -60,7 +60,7 @@ def rdiot(inp, bot=None):
|
||||||
artist = info['artist']
|
artist = info['artist']
|
||||||
album = info['album']
|
album = info['album']
|
||||||
url = info['shortUrl']
|
url = info['shortUrl']
|
||||||
return u"\x02{}\x02 by \x02{}\x02 - {} {}".format(name, artist, album, url)
|
return u"\x02{}\x02 by \x02{}\x02 - {} - {}".format(name, artist, album, url)
|
||||||
|
|
||||||
|
|
||||||
@hook.command
|
@hook.command
|
||||||
|
@ -77,7 +77,7 @@ def rdioar(inp, bot=None):
|
||||||
return "No results."
|
return "No results."
|
||||||
name = info['name']
|
name = info['name']
|
||||||
url = info['shortUrl']
|
url = info['shortUrl']
|
||||||
return u"\x02{}\x02 {}".format(name, url)
|
return u"\x02{}\x02 - {}".format(name, url)
|
||||||
|
|
||||||
|
|
||||||
@hook.command
|
@hook.command
|
||||||
|
|
Reference in a new issue