Skip to content

Commit a09a3b2

Browse files
committed
print fix.
1 parent fec61bd commit a09a3b2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

open_facebook/tests.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -333,8 +333,8 @@ def test_albums(self):
333333
if profile_album:
334334
pictures = graph.get('%s/photos' % profile_album['id'])['data'][:3]
335335
for picture in pictures:
336-
print picture['source']
336+
print(picture['source'])
337337
if cover_album:
338338
pictures = graph.get('%s/photos' % cover_album['id'])['data'][:3]
339339
for picture in pictures:
340-
print picture['source']
340+
print(picture['source'])

0 commit comments

Comments
 (0)