X-Git-Url: https://git.cworth.org/git?p=turbot;a=blobdiff_plain;f=turbot%2Fsheets.py;h=37bd363ac8a85270d90df6d16b4415b47dd72bf2;hp=341a79285bba9618185422ddcca90ea53719dd90;hb=6fe04c2dc64b09bb0b8bbe7885781358c28b0810;hpb=e924689416526d215a5f4aac61966992c5eceed8 diff --git a/turbot/sheets.py b/turbot/sheets.py index 341a792..37bd363 100644 --- a/turbot/sheets.py +++ b/turbot/sheets.py @@ -77,14 +77,14 @@ def sheets_create_for_puzzle(turb, puzzle): # Insert some useful links into the sheet where expected if 'url' in puzzle: url_link = puzzle['url'] - url_text = "Original puzzle is at: {}".format(url_link) + url_text = "Original puzzle link" spreadsheet_insert_data( turb, spreadsheet_id, "B1:B1", '=HYPERLINK("{}","{}")'.format(url_link, url_text)) if 'channel_url' in puzzle: url_link = puzzle['channel_url'] - url_text = "Discussion for this puzzle is at: {}".format(url_link) + url_text = "Slack channel link" spreadsheet_insert_data( turb, spreadsheet_id, "B2:B2", '=HYPERLINK("{}","{}")'.format(url_link, url_text))