Skip to content

Commit

Permalink
fix: Correctly set user password
Browse files Browse the repository at this point in the history
  • Loading branch information
subotic committed Oct 11, 2019
1 parent 3583ea2 commit 9db6445
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion knora/create_ontology.py
Expand Up @@ -118,7 +118,7 @@ def program(args):
email=user["email"],
given_name=user["givenName"],
family_name=user["familyName"],
password=["password"],
password=user["password"],
lang=user["lang"] if user.get("lang") is not None else "en")
except KnoraError as err:
print("Creating user failed: " + err.message)
Expand Down

0 comments on commit 9db6445

Please sign in to comment.