changed lb to lbs

This commit is contained in:
Fredrick W Warren 2022-05-05 12:21:43 -07:00
parent 768fa9bf54
commit a852b72a35

View File

@ -52,7 +52,7 @@ image = Image.open(bundle_dir + "/" + infile)
font = ImageFont.truetype(bundle_dir + "/" + font_face, 19) font = ImageFont.truetype(bundle_dir + "/" + font_face, 19)
draw = ImageDraw.Draw(image) draw = ImageDraw.Draw(image)
draw.text((xpos, line1), str(co2)+" lb", font=font, fill=fill_color) draw.text((xpos, line1), str(co2)+" lbs", font=font, fill=fill_color)
draw.text((xpos, line2), str(trees), font=font, fill=fill_color) draw.text((xpos, line2), str(trees), font=font, fill=fill_color)
image.save(outfile) image.save(outfile)