From 0f2c90ee2ab7013cfec0391181163cb60455cc45 Mon Sep 17 00:00:00 2001 From: Samuel Clay Date: Thu, 5 Jan 2017 19:20:03 -0800 Subject: [PATCH] Can't believe .write_column() is a thing. --- apps/rss_feeds/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/rss_feeds/models.py b/apps/rss_feeds/models.py index 85f1ba3444..6a75a15614 100644 --- a/apps/rss_feeds/models.py +++ b/apps/rss_feeds/models.py @@ -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.")