Skip to content

Commit

Permalink
fix bug where I forgot the () for when calling a ULID class (#232)
Browse files Browse the repository at this point in the history
  • Loading branch information
jessebot authored May 22, 2024
1 parent 307e7eb commit 246ca96
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions docs/assets/images/screenshots/help_text.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "smol_k8s_lab"
version = "5.2.0"
version = "5.2.1"
description = "CLI and TUI to quickly install slimmer Kubernetes distros and then manage apps declaratively using Argo CD"
authors = ["Jesse Hitch <[email protected]>",
"Max Roby <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion smol_k8s_lab/k8s_apps/social/matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def configure_matrix(argocd: ArgoCD,
zitadel.update_user_grant(['matrix_users'])
zitadel_hostname = zitadel.hostname
mas_issuer = f"https://{zitadel.hostname}"
mas_client_id = str(ULID)
mas_client_id = str(ULID())
mas_client_secret = create_password()
mas_admin_token = create_password()
else:
Expand Down

0 comments on commit 246ca96

Please sign in to comment.