Skip to content

Commit 8f11ab0

Browse files
committed
code blocks to pre
1 parent a6ff9c9 commit 8f11ab0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/app-service/containers/tutorial-python-postgresql-app.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -297,15 +297,15 @@ python manage.py runserver
297297

298298
When the Django web app is fully loaded, it returns something like the following message:
299299

300-
```
300+
<pre>
301301
Performing system checks...
302302

303303
System check identified no issues (0 silenced).
304304
December 13, 2019 - 10:54:59
305305
Django version 2.1.2, using settings 'azuresite.settings'
306306
Starting development server at http://127.0.0.1:8000/
307307
Quit the server with CONTROL-C.
308-
```
308+
</pre>
309309

310310
Go to *http:\//localhost:8000* in a browser. You should see the message **No polls are available**.
311311

@@ -321,9 +321,9 @@ To stop the Django server, type Ctrl+C.
321321

322322
Just to see how making app updates works, make a small change in `polls/models.py`. Find the line:
323323

324-
```python
324+
<pre>
325325
choice_text = models.CharField(max_length=200)
326-
```
326+
</pre>
327327

328328
And change it to:
329329

0 commit comments

Comments
 (0)