Skip to content

Commit

Permalink
Can't believe .write_column() is a thing.
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelclay committed Jan 6, 2017
1 parent 72ffa29 commit 0f2c90e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/rss_feeds/models.py
Expand Up @@ -1619,7 +1619,7 @@ def xls_query_popularity(cls, queries, limit):
worksheet.write_comment(0, col, 'Total number of active subscribers who have read a story from the feed in the past 30 days.')
worksheet.set_column(col, col, 8); col += 1
worksheet.write(0, col, "read pct", bold)
worksheet.write_column(0, col, "Of the active subscribers reading this feed in the past 30 days, this is the percentage of stories the average subscriber reads. Values over 100 pct signify that the feed has many shared stories, which throws off the number slightly but not significantly.")
worksheet.write_comment(0, col, "Of the active subscribers reading this feed in the past 30 days, this is the percentage of stories the average subscriber reads. Values over 100 pct signify that the feed has many shared stories, which throws off the number slightly but not significantly.")
worksheet.set_column(col, col, 8); col += 1
worksheet.write(0, col, '# stories 30d', bold)
worksheet.write_comment(0, col, "It's important to ignore feeds that haven't published anything in the last 30 days, which is why this is part of the Reach Score.")
Expand Down

0 comments on commit 0f2c90e

Please sign in to comment.