From 2225658d2e8eac773bd017c0286b05bae6b55a98 Mon Sep 17 00:00:00 2001 From: Seth Vargo Date: Sat, 11 Jan 2020 19:44:34 -0500 Subject: [PATCH] Fix a small comment typo --- secretmanager/api-client/get_secret.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/secretmanager/api-client/get_secret.py b/secretmanager/api-client/get_secret.py index 3d9bf49cb1f..b7dc83c9ae9 100644 --- a/secretmanager/api-client/get_secret.py +++ b/secretmanager/api-client/get_secret.py @@ -35,7 +35,7 @@ def get_secret(project_id, secret_id): # Build the resource name of the secret. name = client.secret_path(project_id, secret_id) - # Delete the secret. + # Get the secret. response = client.get_secret(name) # Get the replication policy.