Changeset 7050
- Timestamp:
- 01/31/08 16:31:38 (10 months ago)
- Files:
-
- django/trunk/django/contrib/syndication/feeds.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/contrib/syndication/feeds.py
r6570 r7050 7 7 8 8 def add_domain(domain, url): 9 if not url.startswith('http://'):9 if not (url.startswith('http://') or url.startswith('https://')): 10 10 # 'url' must already be ASCII and URL-quoted, so no need for encoding 11 11 # conversions here.
