Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aliparlakci committed Jul 22, 2018
1 parent c70e7c2 commit 49920cc
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion script.py
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,11 @@ def download(submissions):
downloadedCount = subsLenght
duplicates = 0
BACKUP = {}
ToBeDownloaded = GLOBAL.arguments.exclude
if GLOBAL.arguments.exclude is not None:
ToBeDownloaded = GLOBAL.arguments.exclude
else:
ToBeDownloaded = []

FAILED_FILE = createLogFile("FAILED")

for i in range(subsLenght):
Expand Down

0 comments on commit 49920cc

Please sign in to comment.