Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 24f1c94

Browse filesBrowse files
gonzalezcesarJon Wayne Parrott
authored andcommitted
add missing curly braces for string formatting (GoogleCloudPlatform#1148)
1 parent 53166ef commit 24f1c94
Copy full SHA for 24f1c94

File tree

Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Filter options
  • appengine/standard/storage/appengine-client
Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed

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

Copy file name to clipboardExpand all lines: appengine/standard/storage/appengine-client/main.py
+1-1Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.