Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aliparlakci committed Jul 24, 2018
1 parent d9586f9 commit b988153
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/downloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,10 @@ def __init__(self,directory,post):
print(post["postSubmitter"]+"_"+title+"_"+post['postId']+extension)

fileDir = directory / (
POST["postSubmitter"]+"_"+title+"_"+POST['postId']+extension
post["postSubmitter"]+"_"+title+"_"+post['postId']+extension
)
tempDir = directory / (
POST["postSubmitter"]+"_"+title+"_"+POST['postId']+".tmp"
post["postSubmitter"]+"_"+title+"_"+post['postId']+".tmp"
)

imageURL = "https:" + IMAGES[0]
Expand Down

0 comments on commit b988153

Please sign in to comment.