Adjust BASE urls to have no trailing slash (consistency)

This commit is contained in:
Devon R
2019-11-14 21:54:34 +00:00
committed by Rapptz
parent f5ebf42e1f
commit bf9b9c5879
6 changed files with 15 additions and 15 deletions

View File

@ -181,7 +181,7 @@ class BaseUser(_BaseUser):
@property
def default_avatar_url(self):
""":class:`Asset`: Returns a URL for a user's default avatar."""
return Asset(self._state, 'embed/avatars/{}.png'.format(self.default_avatar.value))
return Asset(self._state, '/embed/avatars/{}.png'.format(self.default_avatar.value))
@property
def colour(self):