fixed wrong description of error

This commit is contained in:
David Siregar 2021-09-14 21:28:51 +02:00
parent 567bee9a0b
commit 1cc8f7f2e3
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ def new_random_alias():
elif mode == "uuid":
scheme = AliasGeneratorEnum.uuid.value
else:
return jsonify(error=f"{mode} must be either word or alias"), 400
return jsonify(error=f"{mode} must be either word or uuid"), 400
alias = Alias.create_new_random(user=user, scheme=scheme, note=note)
db.session.commit()