Compare commits

...

2 Commits

Author SHA1 Message Date
Adam Goldsmith 70d9d2779b Bump patch version to 0.1.5 2024-04-20 20:12:04 -04:00
Adam Goldsmith 4e127558fd Use `logging.info` instead of `print` 2024-04-20 20:07:53 -04:00
2 changed files with 2 additions and 2 deletions

View File

@ -104,7 +104,7 @@ class ArkhamDBUpdater(discord.Client):
for channel_id in list(self.channel_list):
channel = self.get_channel(channel_id)
if channel is None:
print(
logging.info(
f"channel {channel_id} does not exist, removing it from tracking!"
)
self.channel_list.remove(channel_id)

View File

@ -1,6 +1,6 @@
[project]
name = "ArkhamDB_Discord_Bot"
version = "0.1.4"
version = "0.1.5"
description = ""
authors = [
{name = "Adam Goldsmith", email = "adam@adamgoldsmith.name"},