Skip to content

Commit

Permalink
Merge pull request #69 from timoteostewart/update-print-statement-in-…
Browse files Browse the repository at this point in the history
…example-to-python3

Update README.md so sample code (i.e., "print") works in Python 3
  • Loading branch information
v1k45 authored Jun 21, 2024
2 parents b1766d9 + 97a3248 commit 86fcc3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ qb.login('admin', 'your-secret-password')
torrents = qb.torrents()

for torrent in torrents:
print torrent['name']
print(torrent['name'])
```

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

0 comments on commit 86fcc3e

Please sign in to comment.