avoiding potential type's mismatch
This commit is contained in:
parent
b90a4f1f4a
commit
1485bbcd51
1 changed files with 1 additions and 1 deletions
|
|
@ -355,7 +355,7 @@ class Blueprint(Scaffold):
|
|||
bp_subdomain = blueprint.subdomain
|
||||
|
||||
if state.subdomain is not None and bp_subdomain is not None:
|
||||
bp_options["subdomain"] = bp_subdomain + "." + state.subdomain
|
||||
bp_options["subdomain"] = f"{bp_subdomain}.{state.subdomain}"
|
||||
elif bp_subdomain is not None:
|
||||
bp_options["subdomain"] = bp_subdomain
|
||||
elif state.subdomain is not None:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue