Skip to content

Commit

Permalink
app service: fix a typo (Azure#6181)
Browse files Browse the repository at this point in the history
  • Loading branch information
pallxk authored and tjprescott committed Apr 23, 2018
1 parent 56daefa commit 99241d4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1626,7 +1626,7 @@ def _validate_and_get_connection_string(cli_ctx, resource_group_name, storage_ac

for e in ['blob', 'queue', 'table']:
if not getattr(endpoints, e, None):
error_message = "Storage account '{}' has no '{}' endpoint. It must have table, queue, and blob endpoints all enabled".format(e, storage_account) # pylint: disable=line-too-long
error_message = "Storage account '{}' has no '{}' endpoint. It must have table, queue, and blob endpoints all enabled".format(storage_account, e) # pylint: disable=line-too-long
if sku not in allowed_storage_types:
error_message += 'Storage type {} is not allowed'.format(sku)

Expand Down

0 comments on commit 99241d4

Please sign in to comment.