Skip to content

Commit 2d75bfe

Browse files
committed
Reword warning.
1 parent 0a6b203 commit 2d75bfe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: scripts/restore_secrets.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ def _patch_reverse_id(service_plist_path):
158158
placeholder="REPLACE_WITH_REVERSED_CLIENT_ID",
159159
value=service_plist["REVERSED_CLIENT_ID"])
160160
except KeyError as e:
161-
print("Warning: Couldn't patch %s in %s" % (e.args[0], service_plist_path))
161+
print("Warning: Missing plist key %s in %s, skipping" % (e.args[0], service_plist_path))
162162

163163

164164
def _patch_bundle_id(service_plist_path):
@@ -172,7 +172,7 @@ def _patch_bundle_id(service_plist_path):
172172
placeholder="$(PRODUCT_BUNDLE_IDENTIFIER)",
173173
value=service_plist["BUNDLE_ID"])
174174
except KeyError as e:
175-
print("Warning: Couldn't patch %s in %s" % (e.args[0], service_plist_path))
175+
print("Warning: Missing plist key %s in %s, skipping" % (e.args[0], service_plist_path))
176176

177177

178178
def _patch_file(path, placeholder, value):

0 commit comments

Comments
 (0)