Skip to content

Commit 24f1c94

Browse files
gonzalezcesarJon Wayne Parrott
gonzalezcesar
authored and
Jon Wayne Parrott
committed
add missing curly braces for string formatting (#1148)
1 parent 53166ef commit 24f1c94

File tree

1 file changed

+1
-1
lines changed
  • appengine/standard/storage/appengine-client

1 file changed

+1
-1
lines changed

appengine/standard/storage/appengine-client/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def get(self):
4747
self.response.write(
4848
'Demo GCS Application running from Version: {}\n'.format(
4949
os.environ['CURRENT_VERSION_ID']))
50-
self.response.write('Using bucket name: \n\n'.format(bucket_name))
50+
self.response.write('Using bucket name: {}\n\n'.format(bucket_name))
5151
# [END get_default_bucket]
5252

5353
bucket = '/' + bucket_name

0 commit comments

Comments
 (0)