Skip to content

Commit c095db1

Browse files
Merge pull request #266881 from pauljewellmsft/patch-1
Update storage-quickstart-blobs-python.md
2 parents 7d67424 + 4db3646 commit c095db1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/storage/blobs/storage-quickstart-blobs-python.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ From the project directory, follow steps to create the basic structure of the ap
6363

6464
1. Open a new text file in your code editor.
6565
1. Add `import` statements, create the structure for the program, and include basic exception handling, as shown below.
66-
1. Save the new file as *blob-quickstart.py* in the *blob-quickstart* directory.
66+
1. Save the new file as *blob_quickstart.py* in the *blob-quickstart* directory.
6767
:::code language="python" source="~/azure-storage-snippets/blobs/quickstarts/python/app-framework-qs.py":::
6868

6969
## Object model
@@ -280,10 +280,10 @@ To learn more about deleting a container, and to explore more code samples, see
280280

281281
This app creates a test file in your local folder and uploads it to Azure Blob Storage. The example then lists the blobs in the container, and downloads the file with a new name. You can compare the old and new files.
282282

283-
Navigate to the directory containing the *blob-quickstart.py* file, then execute the following `python` command to run the app:
283+
Navigate to the directory containing the *blob_quickstart.py* file, then execute the following `python` command to run the app:
284284

285285
```console
286-
python blob-quickstart.py
286+
python blob_quickstart.py
287287
```
288288

289289
The output of the app is similar to the following example (UUID values omitted for readability):

0 commit comments

Comments
 (0)