comprobot 2.0.1__tar.gz → 2.0.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (22) hide show
  1. {comprobot-2.0.1/comprobot.egg-info → comprobot-2.0.2}/PKG-INFO +1 -1
  2. {comprobot-2.0.1 → comprobot-2.0.2/comprobot.egg-info}/PKG-INFO +1 -1
  3. {comprobot-2.0.1 → comprobot-2.0.2}/pyproject.toml +1 -1
  4. {comprobot-2.0.1 → comprobot-2.0.2}/Comprobot/__init__.py +0 -0
  5. {comprobot-2.0.1 → comprobot-2.0.2}/Comprobot/__main__.py +0 -0
  6. {comprobot-2.0.1 → comprobot-2.0.2}/Comprobot/api.py +0 -0
  7. {comprobot-2.0.1 → comprobot-2.0.2}/Comprobot/bot.py +0 -0
  8. {comprobot-2.0.1 → comprobot-2.0.2}/Comprobot/commands.py +0 -0
  9. {comprobot-2.0.1 → comprobot-2.0.2}/Comprobot/data.py +0 -0
  10. {comprobot-2.0.1 → comprobot-2.0.2}/Comprobot/functions.py +0 -0
  11. {comprobot-2.0.1 → comprobot-2.0.2}/Comprobot/main.py +0 -0
  12. {comprobot-2.0.1 → comprobot-2.0.2}/Comprobot/moderation.py +1 -1
  13. {comprobot-2.0.1 → comprobot-2.0.2}/Comprobot/money_system.py +0 -0
  14. {comprobot-2.0.1 → comprobot-2.0.2}/Comprobot/process.py +0 -0
  15. {comprobot-2.0.1 → comprobot-2.0.2}/Comprobot/templates.py +0 -0
  16. {comprobot-2.0.1 → comprobot-2.0.2}/README.md +0 -0
  17. {comprobot-2.0.1 → comprobot-2.0.2}/comprobot.egg-info/SOURCES.txt +0 -0
  18. {comprobot-2.0.1 → comprobot-2.0.2}/comprobot.egg-info/dependency_links.txt +0 -0
  19. {comprobot-2.0.1 → comprobot-2.0.2}/comprobot.egg-info/entry_points.txt +0 -0
  20. {comprobot-2.0.1 → comprobot-2.0.2}/comprobot.egg-info/requires.txt +0 -0
  21. {comprobot-2.0.1 → comprobot-2.0.2}/comprobot.egg-info/top_level.txt +0 -0
  22. {comprobot-2.0.1 → comprobot-2.0.2}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: comprobot
3
- Version: 2.0.1
3
+ Version: 2.0.2
4
4
  Summary: A self-hostable Discord bot built for maximum customization.
5
5
  Author: badluma
6
6
  License: MIT
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: comprobot
3
- Version: 2.0.1
3
+ Version: 2.0.2
4
4
  Summary: A self-hostable Discord bot built for maximum customization.
5
5
  Author: badluma
6
6
  License: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "comprobot"
7
- version = "2.0.1"
7
+ version = "2.0.2"
8
8
  authors = [{name = "badluma"}]
9
9
  description = "A self-hostable Discord bot built for maximum customization."
10
10
  readme = "README.md"
File without changes
File without changes
File without changes
File without changes
@@ -101,9 +101,9 @@ async def check_message(message):
101
101
  continue
102
102
 
103
103
  await direct_msg(
104
- message,
105
104
  choice(output["moderation"]["mute"]).replace(
106
105
  "{{MINUTES}}", str(moderation["time_to_mute"])
107
106
  ),
107
+ message,
108
108
  )
109
109
  continue
File without changes
File without changes