Fix if statement logic
Co-authored-by: Adam Hopkins <adam@amhopkins.com>
This commit is contained in:
parent
54cee45d06
commit
9c8f2c619a
@ -201,8 +201,8 @@ class Blueprint(BaseSanic):
|
|||||||
for key, value in attrs_backup.items():
|
for key, value in attrs_backup.items():
|
||||||
setattr(self, key, value)
|
setattr(self, key, value)
|
||||||
|
|
||||||
if with_registration:
|
if with_registration and self._apps:
|
||||||
if len(new_bp._future_statics) > 0 and len(self._apps) > 0:
|
if new_bp._future_statics:
|
||||||
raise Exception(
|
raise Exception(
|
||||||
"Static routes registered with the old blueprint instance,"
|
"Static routes registered with the old blueprint instance,"
|
||||||
" cannot be registered again."
|
" cannot be registered again."
|
||||||
|
Loading…
x
Reference in New Issue
Block a user