Skip to content

Commit

Permalink
Some repair code
Browse files Browse the repository at this point in the history
  • Loading branch information
n0b0dyvn committed Jun 25, 2012
1 parent e33c25d commit e4d6372
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions mfdownload.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ def display(self):
print "\t\t\t********DOWNLOADING FILE %s********\n" % downLoad.fileName
downLoad.downloadFile()
except:
downLoad = linkDownload(i)
downLoad = linkDownload(link)
print "\t\t\t********DOWNLOADING FILE %s********\n" % downLoad.fileName
linkDownload(link).downloadFile()
downLoad.downloadFile()
print
print "FINISHED DOWNLOAD ALL FILE"
3 changes: 2 additions & 1 deletion mfdownload.py~
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,8 @@ if __name__ == '__main__':
print "\t\t\t********DOWNLOADING FILE %s********\n" % downLoad.fileName
downLoad.downloadFile()
except:
downLoad = linkDownload(link)
print "\t\t\t********DOWNLOADING FILE %s********\n" % downLoad.fileName
linkDownload(link).downloadFile()
downLoad.downloadFile()
print
print "FINISHED DOWNLOAD ALL FILE"

0 comments on commit e4d6372

Please sign in to comment.