Skip to content
This repository was archived by the owner on Oct 4, 2023. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fixes typo
adds missing tabs
  • Loading branch information
spuder committed Dec 22, 2015
commit 79e145b91f44e8812c13685a7907252e861de1df
4 changes: 2 additions & 2 deletions EXAMPLES.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ For endpoints that require usernames, once a user is authenticated we can use th

```python
for album in client.get_account_albums('me'):
album_title = album.title if album.title else 'Untitled'
print('Album: {0} ({1})'.format(album_title, album.id))
album_title = album.title if album.title else 'Untitled'
print('Album: {0} ({1})'.format(album_title, album.id))

for image in client.get_album_images(album.id):
image_title = image.title if image.title else 'Untitled'
Expand Down