summaryrefslogtreecommitdiff
path: root/django/contrib/syndication/feeds.py
diff options
context:
space:
mode:
Diffstat (limited to 'django/contrib/syndication/feeds.py')
-rw-r--r--django/contrib/syndication/feeds.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/syndication/feeds.py b/django/contrib/syndication/feeds.py
index 9f5a8f42f3..428767ae48 100644
--- a/django/contrib/syndication/feeds.py
+++ b/django/contrib/syndication/feeds.py
@@ -7,7 +7,7 @@ from django.conf import settings
def add_domain(domain, url):
if not url.startswith('http://'):
- # 'url' must already be ASCII and URL-quoted, so no need for encodign
+ # 'url' must already be ASCII and URL-quoted, so no need for encoding
# conversions here.
url = u'http://%s%s' % (domain, url)
return url