better error message when custom domain is already in use
This commit is contained in:
@@ -335,8 +335,8 @@ def main() -> None:
|
|||||||
return
|
return
|
||||||
try:
|
try:
|
||||||
cli_set_custom_domain()
|
cli_set_custom_domain()
|
||||||
except DomainInUse:
|
except DomainInUse as e:
|
||||||
print("That domain is already in use")
|
print(str(e))
|
||||||
return
|
return
|
||||||
else:
|
else:
|
||||||
try:
|
try:
|
||||||
|
|||||||
Reference in New Issue
Block a user