Advertisement
Guest User

Untitled

a guest
Jul 29th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. #get the cell history
  2. action = smartsheet.Cells.get_cell_history(
  3. sheetid,
  4. row.id,
  5. columns[c].id,
  6. #include_all=True
  7. )
  8.  
  9. try:
  10. revisions = action.data
  11.  
  12. except AttributeError as inst:
  13. print('found Attribute error in this cell:')
  14. print(inst)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement