]> git.cworth.org Git - turbot/commitdiff
Fix stale usage of "puzzle_table"
authorCarl Worth <cworth@cworth.org>
Wed, 30 Dec 2020 20:21:55 +0000 (13:21 -0700)
committerCarl Worth <cworth@cworth.org>
Wed, 30 Dec 2020 20:21:55 +0000 (13:21 -0700)
We no longer haave a separate table for puzzles, but instead the single
"turb.table" holds all of our data.

This doesn't fully convert this code to the new single-table schema,
but it should at least let things pass the flake8 test and deployment.

turbot/events.py

index 86a3c837d15f2f28485c13c7ae7a913c454f803c..64430e5527a0a72395c3a818223f2eb115494dcf 100644 (file)
@@ -221,14 +221,14 @@ def puzzle_channel_created(turb, puzzle_channel_name, puzzle_channel_id):
     # string and cleanly return (eliminating all future retries).
     item['sheet_url'] = 'pending'
     item['channel_url'] = channel_url(puzzle_channel_id)
-    puzzle_table.put_item(Item=item)
+    turb.table.put_item(Item=item)
 
     # Create a sheet for the puzzle
     sheet = sheets_create_for_puzzle(turb, item)
 
     # Update the database with the URL of the sheet
     item['sheet_url'] = sheet['url']
-    puzzle_table.put_item(Item=item)
+    turb.table.put_item(Item=item)
 
     # Get the new sheet_url into the channel description
     set_channel_description(turb, item)