1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-06-01 18:09:28 +00:00

fix increment operator

This commit is contained in:
netanel 2014-12-06 09:20:35 +02:00
parent 7b61ac3ddf
commit 754f0008ec

View file

@ -135,7 +135,7 @@ class EightTracksIE(InfoExtractor):
if download_tries > 3:
raise
else:
++download_tries
download_tries += 1
time.sleep(avg_song_duration)
api_data = json.loads(api_json)