We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d721c4c commit 1bba37eCopy full SHA for 1bba37e
1 file changed
gitopscli/commands/create_preview.py
@@ -45,7 +45,7 @@ def create_preview_command(
45
46
apps_git.checkout(branch)
47
logging.info("App repo %s checkout successfull", branch)
48
- shortened_branch_hash = hashlib.sha256(branch.encode('utf-8')).hexdigest()[:8]
+ shortened_branch_hash = hashlib.sha256(branch.encode("utf-8")).hexdigest()[:8]
49
logging.info("Hashed branch %s to hash %s", branch, shortened_branch_hash)
50
gitops_config = GitOpsConfig(apps_git.get_full_file_path(".gitops.config.yaml"))
51
logging.info("Read GitOpsConfig: %s", gitops_config)
0 commit comments