Skip to content

Commit

Permalink
manager: updates for google's v4 api
Browse files Browse the repository at this point in the history
* burnash/gspread#511 for the json issue
* burnash/gspread#524 for the escaping issue
  • Loading branch information
zambonin committed Jul 20, 2018
1 parent e73026a commit b2bf8a1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion manager/data_composer.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,8 @@ def shape(api_key, steamid, login, file_path, c_code):
show_icon(key, value['img_icon_url']), key, value['name'],
value['paid'], value['time'], price_per_hour(value),
value['achv'], discount_info(value), value['package'],
value['date'], value['location'], value['license']
value['date'].strftime('%d/%m/%Y %X'), value['location'],
value['license']
]

return values
2 changes: 1 addition & 1 deletion manager/data_conveyor.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,4 +120,4 @@ def upload(game_list, keyfile, ss_key):

for cell, value in zip(cell_list, game_list):
cell.value = value
worksheet.update_cells(cell_list)
worksheet.update_cells(cell_list, 'USER_ENTERED')

0 comments on commit b2bf8a1

Please sign in to comment.