Browse Source
Fix NameError with resolving codes with Template
pull/5181/head
Nadir Chowdhury
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
discord/utils.py
|
|
@ -469,7 +469,7 @@ def resolve_template(code): |
|
|
|
""" |
|
|
|
from .template import Template # circular import |
|
|
|
if isinstance(code, Template): |
|
|
|
return template.code |
|
|
|
return code.code |
|
|
|
else: |
|
|
|
rx = r'(?:https?\:\/\/)?discord(?:\.new|(?:app)?\.com\/template)\/(.+)' |
|
|
|
m = re.match(rx, code) |
|
|
|