From b0fb48925fd4dedae2d1119d206a9de788742640 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Wed, 6 Jul 2022 18:41:20 +0000 Subject: [PATCH] Adjust message of git initialization --- bootstrap-daemon/pvcbootstrapd/lib/git.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap-daemon/pvcbootstrapd/lib/git.py b/bootstrap-daemon/pvcbootstrapd/lib/git.py index 16c38d2..021be49 100755 --- a/bootstrap-daemon/pvcbootstrapd/lib/git.py +++ b/bootstrap-daemon/pvcbootstrapd/lib/git.py @@ -52,7 +52,7 @@ def init_repository(config): g = git.cmd.Git(f"{config['ansible_path']}") g.checkout(config["ansible_branch"]) g.submodule("update", "--init", env=dict(GIT_SSH_COMMAND=git_ssh_cmd)) - notifications.send_webhook(config, "success", "First run: successfully initialized Git repository") + notifications.send_webhook(config, "success", "Successfully initialized Git repository") except Exception as e: print(f"Error: {e}")