File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -158,7 +158,7 @@ def _patch_reverse_id(service_plist_path):
158
158
placeholder = "REPLACE_WITH_REVERSED_CLIENT_ID" ,
159
159
value = service_plist ["REVERSED_CLIENT_ID" ])
160
160
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 ))
162
162
163
163
164
164
def _patch_bundle_id (service_plist_path ):
@@ -172,7 +172,7 @@ def _patch_bundle_id(service_plist_path):
172
172
placeholder = "$(PRODUCT_BUNDLE_IDENTIFIER)" ,
173
173
value = service_plist ["BUNDLE_ID" ])
174
174
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 ))
176
176
177
177
178
178
def _patch_file (path , placeholder , value ):
You can’t perform that action at this time.
0 commit comments