]> git.cworth.org Git - turbot/blobdiff - turbot/sheets.py
Put the puzzle's name into the first tab of the sheet
[turbot] / turbot / sheets.py
index 37bd363ac8a85270d90df6d16b4415b47dd72bf2..df2e4e9b10828068048f752b1b57bf3ed9912c63 100644 (file)
@@ -66,9 +66,12 @@ def sheets_create_for_puzzle(turb, puzzle):
                 body={
                     "destinationSpreadsheetId": spreadsheet_id
                 }).execute()
-            # Rename each copied sheet to match original name
-            rename_sheet(turb, spreadsheet_id, res['sheetId'],
-                         sheet["properties"]["title"])
+            # Rename each copied sheet to match the name from the template
+            sheet_name = sheet["properties"]["title"]
+            # Except for "Text" which we rename to the puzzle name
+            if sheet_name == "Text":
+                sheet_name = puzzle['name']
+            rename_sheet(turb, spreadsheet_id, res['sheetId'], sheet_name)
 
     # Next, delete the blank sheet that's was created before the template
     sheet_id = spreadsheet['sheets'][0]['properties']['sheetId']