Modify ↓
Opened 16 years ago
Last modified 16 years ago
#5943 assigned defect
RssEmbedMacro should depend on feedparser
| Reported by: | Jeff Hammel | Owned by: | Simon Smithson |
|---|---|---|---|
| Priority: | normal | Component: | RssEmbedMacro |
| Severity: | normal | Keywords: | |
| Cc: | Trac Release: | 0.11 |
Description
Since feedparser is required, add it to the setup.py:
Index: setup.py
===================================================================
--- setup.py (revision 6660)
+++ setup.py (working copy)
@@ -26,7 +26,7 @@
'Programming Language :: Python',
],
- install_requires = ['Trac'],
+ install_requires = ['Trac', 'feedparser'],
entry_points = {
'trac.plugins': [
Attachments (0)
Note: See
TracTickets for help on using
tickets.


