Skip to content

Commit

Permalink
add missing curly braces for string formatting (#1148)
Browse files Browse the repository at this point in the history
  • Loading branch information
gonzalezcesar authored and Jon Wayne Parrott committed Oct 4, 2017
1 parent 53166ef commit 24f1c94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion appengine/standard/storage/appengine-client/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def get(self):
self.response.write(
'Demo GCS Application running from Version: {}\n'.format(
os.environ['CURRENT_VERSION_ID']))
self.response.write('Using bucket name: \n\n'.format(bucket_name))
self.response.write('Using bucket name: {}\n\n'.format(bucket_name))
# [END get_default_bucket]

bucket = '/' + bucket_name
Expand Down

0 comments on commit 24f1c94

Please sign in to comment.