diff options
| author | Xua <[email protected]> | 2020-08-05 21:48:42 +1200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-08-05 05:48:42 -0400 |
| commit | a1d6ff82dd5b6d1788c0f3bf9ad0643e0f516d16 (patch) | |
| tree | 752ca689a76bfe22ae6354b11d70e16bd68f43d1 /discord/template.py | |
| parent | Require people to use templates when making an issue (diff) | |
| download | discord.py-a1d6ff82dd5b6d1788c0f3bf9ad0643e0f516d16.tar.xz discord.py-a1d6ff82dd5b6d1788c0f3bf9ad0643e0f516d16.zip | |
Fix NameError and AttributeError in Template and Integrations
Diffstat (limited to 'discord/template.py')
| -rw-r--r-- | discord/template.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/template.py b/discord/template.py index cff6ebce..db2d5731 100644 --- a/discord/template.py +++ b/discord/template.py @@ -24,7 +24,7 @@ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ -from .utils import parse_time, _get_as_snowflake +from .utils import parse_time, _get_as_snowflake, _bytes_to_base64_data from .enums import VoiceRegion from .guild import Guild |