mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2026-04-26 04:41:57 -04:00
9 lines
335 B
Python
9 lines
335 B
Python
# This is a compatibility shim for people using Downloader internal pre-3.5.25.
|
|
# It will probably get removed in Red 3.6.
|
|
|
|
# import everything from repo_manager module
|
|
from redbot.core._downloader.repo_manager import *
|
|
|
|
# use Repo subclass with `convert()` method instead of Repo from repo_manager module
|
|
from .converters import Repo
|