Skip to content

Commit 86fcc3e

Browse files
authored
Merge pull request #69 from timoteostewart/update-print-statement-in-example-to-python3
Update README.md so sample code (i.e., "print") works in Python 3
2 parents b1766d9 + 97a3248 commit 86fcc3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ qb.login('admin', 'your-secret-password')
5050
torrents = qb.torrents()
5151

5252
for torrent in torrents:
53-
print torrent['name']
53+
print(torrent['name'])
5454
```
5555

5656
If you have enabled SSL and are using a self-signed certificate, you\'d

0 commit comments

Comments
 (0)