Compare commits
No commits in common. "6d8e139b1917a3a5df332cc66acbf896be0885ab" and "fa3b3537043358ac2cd6eb1fa106c9af5f412a90" have entirely different histories.
6d8e139b19
...
fa3b353704
2 changed files with 4 additions and 2 deletions
|
@ -17,7 +17,6 @@ from redbot.core.bot import Red
|
||||||
from redbot.core.utils.chat_formatting import error, text_to_file
|
from redbot.core.utils.chat_formatting import error, text_to_file
|
||||||
|
|
||||||
|
|
||||||
# pylint: disable=protected-access
|
|
||||||
class Backup(commands.Cog):
|
class Backup(commands.Cog):
|
||||||
"""A utility to make reinstalling repositories and cogs after migrating the bot far easier."""
|
"""A utility to make reinstalling repositories and cogs after migrating the bot far easier."""
|
||||||
|
|
||||||
|
@ -47,7 +46,9 @@ class Backup(commands.Cog):
|
||||||
)
|
)
|
||||||
return
|
return
|
||||||
|
|
||||||
all_repos = list(downloader._repo_manager.repos)
|
all_repos = list(
|
||||||
|
downloader._repo_manager.repos
|
||||||
|
) # pylint: disable=protected-access
|
||||||
|
|
||||||
export_data = []
|
export_data = []
|
||||||
|
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
# ____) | __/ (_| \__ \\ V V /| | | | | | | | | | | | __/ |
|
# ____) | __/ (_| \__ \\ V V /| | | | | | | | | | | | __/ |
|
||||||
# |_____/ \___|\__,_|___/ \_/\_/ |_|_| |_| |_|_| |_| |_|\___|_|
|
# |_____/ \___|\__,_|___/ \_/\_/ |_|_| |_| |_|_| |_| |_|\___|_|
|
||||||
|
|
||||||
|
import json
|
||||||
import logging
|
import logging
|
||||||
import random
|
import random
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue