Skip to content
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.

Commit

Permalink
Repair time_range download feature (hardikvasa#152)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cedric-Garcia authored and hardikvasa committed Nov 4, 2018
1 parent 5d232a8 commit b9589e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion google_images_download/google_images_download.py
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ def build_url_parameters(self,arguments):
if arguments['time_range']:
json_acceptable_string = arguments['time_range'].replace("'", "\"")
d = json.loads(json_acceptable_string)
time_range = ',cdr:1,cd_min:' + d['time_min'] + ',cd_max:' + d['time_min']
time_range = ',cdr:1,cd_min:' + d['time_min'] + ',cd_max:' + d['time_max']
else:
time_range = ''

Expand Down

0 comments on commit b9589e7

Please sign in to comment.