mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
Fixing broken feed urls on keyword popularity xls.
This commit is contained in:
parent
1f0b394bee
commit
9e69db2590
1 changed files with 1 additions and 1 deletions
|
@ -1663,7 +1663,7 @@ class Feed(models.Model):
|
|||
for feed in popularity:
|
||||
col = 0
|
||||
worksheet.write(row, col, feed['feed_title']); col += 1
|
||||
worksheet.write_url(row, col, feed['feed_url']); col += 1
|
||||
worksheet.write_url(row, col, feed.get('feed_url', '')); col += 1
|
||||
worksheet.write(row, col, "=%s*%s*%s" % (
|
||||
xl_rowcol_to_cell(row, col+2),
|
||||
xl_rowcol_to_cell(row, col+3),
|
||||
|
|
Loading…
Add table
Reference in a new issue