Skip to content

Commit 3490de9

Browse files
author
Resolver Developers
committed
Fixes a double import and rogue backtick. By Harry & Hansel.
1 parent 4e76dd4 commit 3490de9

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

content/django.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,8 @@ Go to the **Files** tab on your dashboard, find your project folder, and then
8383
find ``settings.py`` inside it.
8484

8585
We will need to change the ``DATABASE`` and ``INSTALLED_APPS`` sections
86-
so that it looks like the code below. Do not change any other bits of it
86+
so that it looks like the code below. With your username and project name
87+
replaced on the line beginning with NAME. Do not change any other bits of it
8788
at this time.
8889

8990
.. sourcecode:: python
@@ -114,7 +115,7 @@ at this time.
114115
'django.contrib.admin',
115116
# Uncomment the next line to enable admin documentation:
116117
# 'django.contrib.admindocs',
117-
'mysite.myapp`,
118+
'mysite.myapp',
118119
)
119120

120121
(Replace ``mysite.myapp`` with ``your-project-name.your-app-name`` if neccesary.)
@@ -152,7 +153,6 @@ should replace them with your project name or app name, if necessary.
152153
.. sourcecode:: python
153154

154155
from django.conf.urls.defaults import patterns, include, url
155-
from django.contrib.staticfiles.urls import staticfiles_urlpatterns
156156

157157
# Uncomment the next two lines to enable the admin:
158158
from django.contrib import admin

0 commit comments

Comments
 (0)