回答編集履歴
1
typo
answer
CHANGED
@@ -2,11 +2,11 @@
|
|
2
2
|
from test_app.settings import MEDIA_ROOT
|
3
3
|
```
|
4
4
|
これを
|
5
|
+
```Python
|
6
|
+
from django.conf import settings
|
5
7
|
```
|
6
|
-
from django.conf import settings
|
7
|
-
```python
|
8
8
|
として、
|
9
|
-
```
|
9
|
+
```Python
|
10
10
|
settings.MEDIA_ROOT
|
11
11
|
```
|
12
12
|
で使ってください。
|