diff --git a/django/utils/feedgenerator.py b/django/utils/feedgenerator.py
a
|
b
|
|
242 | 242 | if item['comments'] is not None: |
243 | 243 | handler.addQuickElement(u"comments", item['comments']) |
244 | 244 | if item['unique_id'] is not None: |
245 | | handler.addQuickElement(u"guid", item['unique_id']) |
| 245 | if item['link'] is not None: |
| 246 | handler.addQuickElement(u"guid", item['unique_id'], {u"isPermaLink": "false"}) |
| 247 | else: |
| 248 | handler.addQuickElement(u"guid", item['unique_id']) |
246 | 249 | if item['ttl'] is not None: |
247 | 250 | handler.addQuickElement(u"ttl", item['ttl']) |
248 | 251 | |