Skip to content

Commit

Permalink
Merge pull request codelucas#157 from surajssd/issue#95
Browse files Browse the repository at this point in the history
Issue#95 added graceful string concatenation
  • Loading branch information
codelucas committed Jan 10, 2016
2 parents 643f338 + 99af75c commit a828a3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion newspaper/images.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def largest_image_url(self):
if area > max_area:
max_area = area
max_url = img_url
log.debug('using max img ' + max_url)
log.debug('using max img {}'.format(max_url))
return max_url

def calculate_area(self, img_url, dimension):
Expand Down

0 comments on commit a828a3a

Please sign in to comment.