From 79e145b91f44e8812c13685a7907252e861de1df Mon Sep 17 00:00:00 2001 From: Spencer Owen Date: Mon, 21 Dec 2015 18:50:10 -0700 Subject: [PATCH] Fixes typo adds missing tabs --- EXAMPLES.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/EXAMPLES.md b/EXAMPLES.md index 2ec2cb7..b78701a 100644 --- a/EXAMPLES.md +++ b/EXAMPLES.md @@ -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'