Skip to content

Commit

Permalink
Fix LaymanError 43 message. (#189)
Browse files Browse the repository at this point in the history
  • Loading branch information
jirik authored Dec 14, 2020
1 parent 9c200f1 commit 44821e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/layman/common/prime_db_schema/publications.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def only_valid_names(users_list):
for username in usernames_for_chesk:
info = users.get_user_infos(username)
if not info:
raise LaymanError(43, f'Not existing workspace. Workspace={username}')
raise LaymanError(43, f'Not existing user. Username={username}')


def at_least_one_can_write(can_write):
Expand Down

0 comments on commit 44821e3

Please sign in to comment.