1
1
mirror of https://github.com/ytdl-org/youtube-dl synced 2024-09-18 07:56:24 +02: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)