Compare commits

..

No commits in common. "6d8e139b1917a3a5df332cc66acbf896be0885ab" and "fa3b3537043358ac2cd6eb1fa106c9af5f412a90" have entirely different histories.

2 changed files with 4 additions and 2 deletions

View file

@ -17,7 +17,6 @@ from redbot.core.bot import Red
from redbot.core.utils.chat_formatting import error, text_to_file
# pylint: disable=protected-access
class Backup(commands.Cog):
"""A utility to make reinstalling repositories and cogs after migrating the bot far easier."""
@ -47,7 +46,9 @@ class Backup(commands.Cog):
)
return
all_repos = list(downloader._repo_manager.repos)
all_repos = list(
downloader._repo_manager.repos
) # pylint: disable=protected-access
export_data = []

View file

@ -5,6 +5,7 @@
# ____) | __/ (_| \__ \\ V V /| | | | | | | | | | | | __/ |
# |_____/ \___|\__,_|___/ \_/\_/ |_|_| |_| |_|_| |_| |_|\___|_|
import json
import logging
import random