From: justin melvin <jmelvinprime@gmail.com>
Date: Sat, 28 Nov 2020 00:03:33 +0000 (-0800)
Subject: Fix arguments to HYPERLINK
X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=9882f6d613705bb0bc9cd8f82499ecfdfa96a56e;p=turbot

Fix arguments to HYPERLINK
---

diff --git a/turbot/sheets.py b/turbot/sheets.py
index 0ed6847..0b2cb5e 100644
--- a/turbot/sheets.py
+++ b/turbot/sheets.py
@@ -39,14 +39,18 @@ def sheets_create_for_puzzle(turb, puzzle):
     new_sheet = sheets_create(turb, puzzle['name'])
 
     # Insert some useful links into the sheet
+    url_link=''
     if 'url' in puzzle:
         url_text = "Original puzzle is at: {}".format(puzzle['url'])
+        url_link = puzzle['url']
     else:
         url_text = ''
 
+    channel_url_link = ''
     if 'channel_url' in puzzle:
         channel_url_text = "Discussion for this puzzle is at: {}".format(
             puzzle['channel_url'])
+        channel_url_link = puzzle['channel_url']
     else:
         channel_url_text = ''
 
@@ -57,7 +61,7 @@ def sheets_create_for_puzzle(turb, puzzle):
         insertDataOption='INSERT_ROWS',
         body={
             'range': 'A1:A2',
-            'values': [['=HYPERLINK('+url_text+')'], ['=HYPERLINK('+channel_url_text+')']]
+            'values': [['=HYPERLINK('+url_link+','+url_text+')'], ['=HYPERLINK('+channel_url_link+','+channel_url_text+')']]
         }).execute()
 
     # Copy some sheets from the Template spreadsheet