Skip to content

Commit

Permalink
v1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Snazzah committed Apr 20, 2020
1 parent 196d865 commit 7f72131
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions dbots/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
__author__ = 'Snazzah'
__license__ = 'MIT'
__copyright__ = 'Copyright 2020 Snazzah'
__version__ = '1.2.1'
__version__ = '1.2.2'

from collections import namedtuple
import logging
Expand All @@ -15,7 +15,7 @@

VersionInfo = namedtuple('VersionInfo', 'major minor micro releaselevel serial')
version_info = VersionInfo(
major = 1, minor = 2, micro = 1,
major = 1, minor = 2, micro = 2,
releaselevel = 'final', serial = 0
)

Expand Down
10 changes: 5 additions & 5 deletions dbots/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -1058,18 +1058,18 @@ def get_widget_url(self, bot_id: str, **query) -> str:

class DiscordBotList(Service):
"""
Represents the Discord Boats service.
Represents the Discord Bot List service.
.. seealso::
- `Discord Boats Website <https://discord.boats/>`_
- `Discord Boats API Documentation <https://discord.boats/api/docs/>`_
- `Discord Bot List Website <https://discordbotlist.com/>`_
- `Discord Bot List API Documentation <https://discordbotlist.com/api-docs/>`_
"""

BASE_URL = 'https://discord.boats/api/v2'
BASE_URL = 'https://discordbotlist.com/api'

@staticmethod
def aliases() -> list:
return ['discordboats', 'discord.boats', 'dboats']
return ['discordbotlist', 'discordbotlist.com', 'dbotlist']

@staticmethod
def _post(
Expand Down

0 comments on commit 7f72131

Please # to comment.